diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj index 7a7fe43837a3..937d2f8ad4ca 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj @@ -16,7 +16,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/B2A/AsrB2ATests.cs b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/B2A/AsrB2ATests.cs index 712941adea9e..5ae163eb9804 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/B2A/AsrB2ATests.cs +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/B2A/AsrB2ATests.cs @@ -136,5 +136,73 @@ public void TestUpdateRPIWithDES() this.VaultSettingsFilePath + "\""); } + + [Fact] + [Trait( + Category.AcceptanceType, + Category.CheckIn)] + public void TestCreateRPIWithPPG() + { + this.VaultSettingsFilePath = System.IO.Path.Combine( + System.AppDomain.CurrentDomain.BaseDirectory, + "ScenarioTests", "B2A", "B2AInput", "B2A.VaultCredentials"); + this.RunPowerShellTest( + _logger, + Constants.NewModel, + "Test-CreateRPIWithProximityPlacementGroup -vaultSettingsFilePath \"" + + this.VaultSettingsFilePath + + "\""); + } + + [Fact] + [Trait( + Category.AcceptanceType, + Category.CheckIn)] + public void TestUpdateRPIWithPPG() + { + this.VaultSettingsFilePath = System.IO.Path.Combine( + System.AppDomain.CurrentDomain.BaseDirectory, + "ScenarioTests", "B2A", "B2AInput", "B2A.VaultCredentials"); + this.RunPowerShellTest( + _logger, + Constants.NewModel, + "Test-UpdateRPIWithProximityPlacementGroup -vaultSettingsFilePath \"" + + this.VaultSettingsFilePath + + "\""); + } + + [Fact] + [Trait( + Category.AcceptanceType, + Category.CheckIn)] + public void TestCreateRPIWithAvZone() + { + this.VaultSettingsFilePath = System.IO.Path.Combine( + System.AppDomain.CurrentDomain.BaseDirectory, + "ScenarioTests", "B2A", "B2AInput", "B2A.VaultCredentials"); + this.RunPowerShellTest( + _logger, + Constants.NewModel, + "Test-CreateRPIWithAvailabilityZone -vaultSettingsFilePath \"" + + this.VaultSettingsFilePath + + "\""); + } + + [Fact] + [Trait( + Category.AcceptanceType, + Category.CheckIn)] + public void TestUpdateRPIWithAvZone() + { + this.VaultSettingsFilePath = System.IO.Path.Combine( + System.AppDomain.CurrentDomain.BaseDirectory, + "ScenarioTests", "B2A", "B2AInput", "B2A.VaultCredentials"); + this.RunPowerShellTest( + _logger, + Constants.NewModel, + "Test-UpdateRPIWithAvailabilityZone -vaultSettingsFilePath \"" + + this.VaultSettingsFilePath + + "\""); + } } } diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/B2A/AsrB2ATests.ps1 b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/B2A/AsrB2ATests.ps1 index d894e2d8201b..451797225d35 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/B2A/AsrB2ATests.ps1 +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/B2A/AsrB2ATests.ps1 @@ -797,4 +797,97 @@ function Test-UpdateRPIWithDiskEncryptionSetMap Set-AsrReplicationProtectedItem -InputObject $rpi -DiskIdToDiskEncryptionSetMap $diskEncryptionSetMap $rpi = Get-AsrReplicationProtectedItem -ProtectionContainer $pc -FriendlyName $VMFriendlyName Assert-NotNull($rpi.ProviderSpecificDetails.AzureVMDiskDetails[0].DiskEncryptionSetId) +} + +<# +.SYNOPSIS +Site Recovery Create RPI with ProximityPlacementGroup +#> +function Test-CreateRPIWithProximityPlacementGroup +{ + param([string] $vaultSettingsFilePath) + + # Import Azure RecoveryServices Vault Settings File + Import-AzRecoveryServicesAsrVaultSettingsFile -Path $vaultSettingsFilePath + $PrimaryFabricName = "H2ASite" + $fabric = Get-AsrFabric -FriendlyName $PrimaryFabricName + $pc = Get-ASRProtectionContainer -Fabric $fabric + $pcm = Get-ASRProtectionContainerMapping -ProtectionContainer $pc + $policyName ="b2apolicy" + $policy = Get-AzRecoveryServicesAsrPolicy -Name $policyName + $VMFriendlyName ="A020-VJ-Dum1" + $VM= Get-AsrProtectableItem -ProtectionContainer $pc -FriendlyName $VMFriendlyName + $ResourceGroupId ="/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg" + $LogStorageAccountId = "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Storage/storageAccounts/hrasa" + $ppg = "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Compute/proximityPlacementGroups/ppgh2a" + $EnableDRjob = New-AsrReplicationProtectedItem -ProtectableItem $VM -Name $VM.Name -ProtectionContainerMapping $pcm -RecoveryAzureStorageAccountId $LogStorageAccountId -OSDiskName $($VMFriendlyName+"disk") -OS Windows -RecoveryResourceGroupId $ResourceGroupId -RecoveryProximityPlacementGroupId $ppg +} + +<# +.SYNOPSIS +Site Recovery Update RPI with ProximityPlacementGroup +#> +function Test-UpdateRPIWithProximityPlacementGroup +{ + param([string] $vaultSettingsFilePath) + + # Import Azure RecoveryServices Vault Settings File + Import-AzRecoveryServicesAsrVaultSettingsFile -Path $vaultSettingsFilePath + $PrimaryFabricName = "H2ASite" + $fabric = Get-AsrFabric -FriendlyName $PrimaryFabricName + $pc = Get-ASRProtectionContainer -Fabric $fabric + $policyName ="b2apolicy" + $policy = Get-AzRecoveryServicesAsrPolicy -Name $policyName + $VMFriendlyName ="A020-VJ-Dum1" + $rpi = Get-AsrReplicationProtectedItem -ProtectionContainer $pc -FriendlyName $VMFriendlyName + $ppgSet="/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Compute/proximityPlacementGroups/ppgh2aset" + Set-AsrReplicationProtectedItem -InputObject $rpi -RecoveryProximityPlacementGroupId $ppgSet + $rpi = Get-AsrReplicationProtectedItem -ProtectionContainer $pc -FriendlyName $VMFriendlyName + Assert-NotNull($rpi.ProviderSpecificDetails.RecoveryProximityPlacementGroupId) +} + +<# +.SYNOPSIS +Site Recovery Create RPI with AvailabilityZone +#> +function Test-CreateRPIWithAvailabilityZone +{ + param([string] $vaultSettingsFilePath) + + Import-AzRecoveryServicesAsrVaultSettingsFile -Path $vaultSettingsFilePath + $PrimaryFabricName = "H2ASite" + $fabric = Get-AsrFabric -FriendlyName $PrimaryFabricName + $pc = Get-ASRProtectionContainer -Fabric $fabric + $pcm = Get-ASRProtectionContainerMapping -ProtectionContainer $pc + $policyName ="b2apolicy" + $policy = Get-AzRecoveryServicesAsrPolicy -Name $policyName + $VMFriendlyName ="A020-VJ-Dum2" + $VM= Get-AsrProtectableItem -ProtectionContainer $pc -FriendlyName $VMFriendlyName + $ResourceGroupId ="/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg" + $LogStorageAccountId = "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Storage/storageAccounts/hrasa" + $avZone = "1" + $EnableDRjob = New-AsrReplicationProtectedItem -ProtectableItem $VM -Name $VM.Name -ProtectionContainerMapping $pcm -RecoveryAzureStorageAccountId $LogStorageAccountId -OSDiskName $($VMFriendlyName+"disk") -OS Windows -RecoveryResourceGroupId $ResourceGroupId -RecoveryAvailabilityZone $avZone +} + +<# +.SYNOPSIS +Site Recovery Update RPI with AvailabilityZone +#> +function Test-UpdateRPIWithAvailabilityZone +{ + param([string] $vaultSettingsFilePath) + + # Import Azure RecoveryServices Vault Settings File + Import-AzRecoveryServicesAsrVaultSettingsFile -Path $vaultSettingsFilePath + $PrimaryFabricName = "H2ASite" + $fabric = Get-AsrFabric -FriendlyName $PrimaryFabricName + $pc = Get-ASRProtectionContainer -Fabric $fabric + $policyName ="b2apolicy" + $policy = Get-AzRecoveryServicesAsrPolicy -Name $policyName + $VMFriendlyName ="A020-VJ-Dum2" + $rpi = Get-AsrReplicationProtectedItem -ProtectionContainer $pc -FriendlyName $VMFriendlyName + $avZoneSet="2" + Set-AsrReplicationProtectedItem -InputObject $rpi -RecoveryAvailabilityZone $avZoneSet + $rpi = Get-AsrReplicationProtectedItem -ProtectionContainer $pc -FriendlyName $VMFriendlyName + Assert-NotNull($rpi.ProviderSpecificDetails.RecoveryAvailabilityZone) } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/B2A/B2AInput/B2A.VaultCredentials b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/B2A/B2AInput/B2A.VaultCredentials new file mode 100644 index 000000000000..020e4316b655 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/B2A/B2AInput/B2A.VaultCredentials @@ -0,0 +1 @@ +b364ed8d-4279-4bf8-8fd1-56f8fa0ae05cprakrgH2ATest3539378903324577401westus2VaultsMicrosoft.RecoveryServicesMIIKWQIBAzCCChUGCSqGSIb3DQEHAaCCCgYEggoCMIIJ/jCCBhcGCSqGSIb3DQEHAaCCBggEggYEMIIGADCCBfwGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAiBZgD63PhSpgICB9AEggTYVtkM0Hx64KYr4qir9XiOrAo0ve6zz0EPIBLMjqc6ZplPKFxcHsxuwCaaGfe29LAy4Essv83wY2H23kHhRN7z+Lb4dQdQlTG40Wn9f8R+EmBHPXy6HkWrQMXKlrMRUNp/44xeC5uu8fd7b95s6fL9YtbTqe4UgabJxhQLZ6NiUGO2T4hkCxR/xDcz8pN9wR8rx8vj/+L0UaR1O/MvIXLlQuhBxuvUkh8GYsP6vVahCnjs2x8o7UgQjgqyy9uujNASExE9hbfNec88+K8KGusMGrXM0noOVYn6P1FD5Fx2UGfLQujJ+h7s9KRiAPtb+Pk1lZOftuevkCyqSLlUd39I/5SKQ9//MuvlN9MTmCSSgt0eT0i7F9ttqz5mROQuPrYI3qVgtq9PurA7ONFXft18CF2YE1G356XMoa6e+oKSizNqg4/nlfAYfWV8oSRjXpggqTo1anfVzrQ1ghuanAAttB9LoaavRqyjW1XyfyxQSdkPjj/7I+gm1w6vqaMAgjC43rfH7o56wRUDf3EboDpUTS9OQ3UoRtogrmgM0NCtthimoqTNdxzb+zDXcMDSub9w8PD9szK1n431cPlm2FagzYywroutNl8amrV2R4nAlXe3rdhN3ZVozqONcj3aKloUwFF21G6lV2LLYqJqbEarebsKNOxsomWAPw2HUbKLvfL+N5GwR0TgH+WqxRXtuqI3KUFU/bRVOL+OjLOpT9ET2JA7Zuj996cPeso3U4F9rBmuafvtOn4IhCRloTMLxq0GOgHpmKtdExUTVml29s08+T3ZcOHghbs/VemDVYZEBTeFBpm8C5rguaa+yKIPgfj7P0387h5yNB+yxabr04gGIzd5nhg5pw5e+PMa6g18dR10tLIabnkh58adIUrFJIoo/ZMqyRfSnxgfajbU5FuVNy4LxbWt2lmN9Uk+YYa+4u54QZw1Pwq6ETpqJU3uyiFV+LfYIJMWaqHH/Yx9y1AtPA/y6MSKzrgYJWj8qVWQYW7PC7EiVl3Lt7ZkpdPe5Hpv8QJB1nSDBiUKMbuKM/2BTsI4SQD9rbpVNyAsbOQDY50a7MNC0vTVxS8t1xDwvvSjnx4e92DbmrSHwnrkzyaLIXiqDsIrxW0Jbs/DYe8nxGs4HEpn4u38AzicscpQOCjyN2GmyB9bIqKTpbHOorbkRJijV670KXsZF33wwcKDBKVuQRW7RsjP1g7nCAhR5Ag3PHtgmxBLFBUj0HOI3PG346Zfpt+B1x8nMfT6Gj5d4QpjepwWUgzXnq9aO74bbyEO9TcwLTkLnw5nIzzkre4fGs6olspZ/I7eRuESP3fJZQcBmrAVs0kAEZuBo3AdIdESNTvUyh+GM/58KTAxK9qXed4iIbVXfHc6rs/XLcH1M3cAPdUIczSlkCIpttqD19Pn4ERRnzRmPLvbCFURcO5K1vFjabA91YMIKDEjAEElTwHTGBGo7Tj4UsYLx6SYyw/d6x6UM07Dy3+jOCr5MUee8KAKk23rap95IzDyQ8CSeOL9RM45bmy/8xtoNORNZ97pHEguk7+Q35ieT4baJ0wbeWELy0NG5VRp8m+HqFCov5L60dUg0ggSaUfu9ATumgFI5V0XRnDiWp9s9lk/5+XSbYeMsEunx4IVVlL9TbxwIRY2i665jaHcaTGB6jANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADQANwA4AGYAMQAxADgAMgAtADcAYQAzAGIALQA0ADQAOQA0AC0AOAA0ADcANgAtADYAZgAwADMAOQAzADUAZgA2ADIAZQBkMGsGCSsGAQQBgjcRATFeHlwATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByACAAdgAxAC4AMDCCA98GCSqGSIb3DQEHBqCCA9AwggPMAgEAMIIDxQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIDyWgkno2mMACAgfQgIIDmKofucu78emMOkA55aH55LZH8essE9tr88xwki36AWCBQE50TAHrTjgmG5xfPfRBACnjddMUymMTr4Vy0K6ZwZxwqOKl+L9GTheQ4aX8h0wW6nsNam4XkbWJqLegil/3jFhOxBF9x0GsHP5AClcEZTaPShwpOpVDEoFRlbzNRuT6z3y+sO8YSECjpDc1PK15i4cLIZpdHq1wRwk6urB6GHJU282fW7Ojv/15zK46TJvJ+/Md33GyokXXoZ2xZ7E2N4Gt78stoV+WPS0DZdsX4J/ZvUdGE4gGTqo7hRHwAkVuolx5cpL49aiPORF2Xe0ahy5c4TsEE8yxOTeI0m6ecJFj3dSah2idBlOHyXltu33V2rNPRdNzA8PExcWc+tSNZOoq6H6awvmUcSLnmjIwkNslx/JxQQahY+5w0ar0rnU/zyoSJ/GHud+KtxquV1PJ3fEZmJdK304g5nVPwmZrKUy6IxDZ9eiRxWUILGoKaxdnYYWbdHsHV7dgQypvLxwRfUgLvRF2gsqu/N1TWOh8tb1oirv0TsLkurVSYzyH/0pruOOh6a+zGkGpY8hEsI1riR2bvfBdJxRXQG3sSu3tibjOHGkqgjrevDZGuT4s09MR8KmsbTfvVmenjD3MJjymSKhK7z91lG2vk8W+Ue9BN1jB/PKQtNQnwW289upMXzobgQIS5D6x4NH076SOIAVs2/zc7aQCxCYLWYtvisCnuOZgkFGPCHo28Ve2JeDiC4mQdFThEVhdSjWx1r9x8f3CocCKTz0vr1i+3HaoaD8tplfKMCi0oRlgi9du5vIrqG/KzqMPUC2xB+gs7lZ/+tXgNhxE9Oj9TKEoOMNyh5BTCtE9RrhpqqdlA9haEXQcktmehEG0Y0u/8XezolOPwqj/j0RWPEhB9RS3752eqW0I8nGLhuB6V5a3flF3iFBn2RrmYa7bgwUSf+8XdrEu7LpvUOFCU5Wg9We50T/gCQKU5KThnL8RizYA9iri5dxffQpAZsRsLVme1J20FlMoCU9+HIadE6iWCM5uRAk4hb4bseTdKXRWdlgbacA36rCW/w/Tof6sVEeMHopT4OIo3YDirFjgJd5jGJDqAuQ2auiJpYCM2u1SFXHUjSI2TzLHBENua4Ublsp+ix/ClMkYLOy9x73g39NXWsvd29i+SQKgZOFNu+S7XXg86OocmdNPcSnbTKQyBHrHsKmWc5bt+0D9bgx6KjcegCYOMDswHzAHBgUrDgMCGgQUuoGcVwuv1d/3///wKabup6abbDEEFMGYbSvqmgD2/QfNhMLHWgcvLBf5AgIH0A==2.0https://login.windows.net4154c262-ea7f-426f-86ec-ac8ed8734b414d6bc55d-166a-48c5-a239-8a715cacc483https://RecoveryServiceVault/westus2/H2ATest/3539378903324577401https://pod01-id1.wus2.backup.windowsazure.com/restapi/1efac2b5-1ac2-5efd-8afa-4487a6cad9b2H2ASiteNone \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/V2A/AsrV2ATests.cs b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/V2A/AsrV2ATests.cs index 6b47e4efcb2b..127bd9397799 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/V2A/AsrV2ATests.cs +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/V2A/AsrV2ATests.cs @@ -276,5 +276,73 @@ public void V2ACreateRPIWithDESEnabledDiskInput() this.VaultSettingsFilePath + "\""); } + + [Fact] + [Trait( + Category.AcceptanceType, + Category.CheckIn)] + public void V2ACreateRPIWithPPG() + { + this.VaultSettingsFilePath = Path.Combine( + AppDomain.CurrentDomain.BaseDirectory, + "ScenarioTests", "V2A", "V2AInput", "V2AInput.VaultCredentials"); + this.RunPowerShellTest( + _logger, + Constants.NewModel, + "V2ACreateRPIWithPPG -vaultSettingsFilePath \"" + + this.VaultSettingsFilePath + + "\""); + } + + [Fact] + [Trait( + Category.AcceptanceType, + Category.CheckIn)] + public void V2AUpdateRPIWithPPG() + { + this.VaultSettingsFilePath = Path.Combine( + AppDomain.CurrentDomain.BaseDirectory, + "ScenarioTests", "V2A", "V2AInput", "V2AInput.VaultCredentials"); + this.RunPowerShellTest( + _logger, + Constants.NewModel, + "V2AUpdateRPIWithPPG -vaultSettingsFilePath \"" + + this.VaultSettingsFilePath + + "\""); + } + + [Fact] + [Trait( + Category.AcceptanceType, + Category.CheckIn)] + public void V2ACreateRPIWithAvZone() + { + this.VaultSettingsFilePath = Path.Combine( + AppDomain.CurrentDomain.BaseDirectory, + "ScenarioTests", "V2A", "V2AInput", "V2AInput.VaultCredentials"); + this.RunPowerShellTest( + _logger, + Constants.NewModel, + "V2ACreateRPIWithAvZone -vaultSettingsFilePath \"" + + this.VaultSettingsFilePath + + "\""); + } + + [Fact] + [Trait( + Category.AcceptanceType, + Category.CheckIn)] + public void V2AUpdateRPIWithAvZone() + { + this.VaultSettingsFilePath = Path.Combine( + AppDomain.CurrentDomain.BaseDirectory, + "ScenarioTests", "V2A", "V2AInput", "V2AInput.VaultCredentials"); + this.RunPowerShellTest( + _logger, + Constants.NewModel, + "V2AUpdateRPIWithAvZone -vaultSettingsFilePath \"" + + this.VaultSettingsFilePath + + "\""); + } } } diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/V2A/AsrV2ATests.ps1 b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/V2A/AsrV2ATests.ps1 index d6d7f3e0ed71..3291185a0666 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/V2A/AsrV2ATests.ps1 +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/V2A/AsrV2ATests.ps1 @@ -618,3 +618,88 @@ function V2ACreateRPIWithDESEnabledDiskInput $EnableDRjob = New-AzRecoveryServicesAsrReplicationProtectedItem -VMwareToAzure -ProtectableItem $pi -Name $rpiName -ProtectionContainerMapping $pcm -InMageAzureV2DiskInput $diskInput -ProcessServer $ProcessServers[0] -Account $AccountHandles[0] -RecoveryResourceGroupId $ResourceGroupId -LogStorageAccountId $LogStorageAccountId -RecoveryAzureNetworkId $RecoveryVnetId -RecoveryAzureSubnetName "Subnet-1" } +function V2ACreateRPIWithPPG +{ + param([string] $vaultSettingsFilePath) + Import-AzRecoveryServicesAsrVaultSettingsFile -Path $vaultSettingsFilePath + $PrimaryFabricName = "WIN-B6L6OJO1E6Q" + $pcName = "WIN-B6L6OJO1E6Q" + $fabric = Get-AsrFabric -FriendlyName $PrimaryFabricName + $pc = Get-ASRProtectionContainer -FriendlyName $pcName -Fabric $fabric + $PolicyName1 = "test-policy" + $Policy1 = Get-AzRecoveryServicesAsrPolicy -Name $PolicyName1 + $pcm = Get-AzRecoveryServicesAsrProtectionContainerMapping -ProtectionContainer $pc -Name "f858b936-ee57-44c4-9ff9-2907d418fbd2" + $piName = "vi-win-vm-new" + $pi = Get-ASRProtectableItem -ProtectionContainer $pc -FriendlyName $piName + $rpiName = "vi-win-vm" + $AccountHandles = $fabric[0].FabricSpecificDetails.RunAsAccounts + $ProcessServers = $fabric[0].FabricSpecificDetails.ProcessServers + $ResourceGroupId ="/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg" + $RecoveryVnetId ="/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1" + $LogStorageAccountId = "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Storage/storageAccounts/logstoracc123" + $ppg = "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/proximityPlacementGroups/ppgus" + $EnableDRjob = New-AzRecoveryServicesAsrReplicationProtectedItem -VMwareToAzure -ProtectableItem $pi -Name $rpiName -ProtectionContainerMapping $pcm -ProcessServer $ProcessServers[0] -Account $AccountHandles[0] -RecoveryResourceGroupId $ResourceGroupId -logStorageAccountId $LogStorageAccountId -RecoveryProximityPlacementGroupId $ppg -RecoveryAzureNetworkId $RecoveryVnetId -RecoveryAzureSubnetName "Subnet-1" +} + +function V2AUpdateRPIWithPPG +{ + param([string] $vaultSettingsFilePath) + Import-AzRecoveryServicesAsrVaultSettingsFile -Path $vaultSettingsFilePath + $PrimaryFabricName = "WIN-B6L6OJO1E6Q" + $pcName = "WIN-B6L6OJO1E6Q" + $fabric = Get-AsrFabric -FriendlyName $PrimaryFabricName + $pc = Get-ASRProtectionContainer -FriendlyName $pcName -Fabric $fabric + $PolicyName1 = "test-policy" + $Policy1 = Get-AzRecoveryServicesAsrPolicy -Name $PolicyName1 + $pcm = Get-AzRecoveryServicesAsrProtectionContainerMapping -ProtectionContainer $pc -Name "f858b936-ee57-44c4-9ff9-2907d418fbd2" + $piName = "vi-win-vm-new" + $rpi = Get-ASRReplicationProtectedItem -ProtectionContainer $pc -FriendlyName $piName + $rpiName = "vi-win-vm" + $ppgSet = "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/proximityPlacementGroups/ppgnew" + $UpdateVmjob = Set-AzRecoveryServicesAsrReplicationProtectedItem -InputObject $rpi -Name $rpiName -RecoveryProximityPlacementGroupId $ppgSet + $rpi = Get-AsrReplicationProtectedItem -ProtectionContainer $pc -FriendlyName $piName + Assert-NotNull($rpi.ProviderSpecificDetails.RecoveryProximityPlacementGroupId) +} + +function V2ACreateRPIWithAvZone +{ + param([string] $vaultSettingsFilePath) + Import-AzRecoveryServicesAsrVaultSettingsFile -Path $vaultSettingsFilePath + $PrimaryFabricName = "WIN-B6L6OJO1E6Q" + $pcName = "WIN-B6L6OJO1E6Q" + $fabric = Get-AsrFabric -FriendlyName $PrimaryFabricName + $pc = Get-ASRProtectionContainer -FriendlyName $pcName -Fabric $fabric + $PolicyName1 = "test-policy" + $Policy1 = Get-AzRecoveryServicesAsrPolicy -Name $PolicyName1 + $pcm = Get-AzRecoveryServicesAsrProtectionContainerMapping -ProtectionContainer $pc -Name "f858b936-ee57-44c4-9ff9-2907d418fbd2" + $piName = "vi-win-vm-new" + $pi = Get-ASRProtectableItem -ProtectionContainer $pc -FriendlyName $piName + $rpiName = "vi-win-vm" + $AccountHandles = $fabric[0].FabricSpecificDetails.RunAsAccounts + $ProcessServers = $fabric[0].FabricSpecificDetails.ProcessServers + $ResourceGroupId ="/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg" + $RecoveryVnetId ="/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1" + $LogStorageAccountId = "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Storage/storageAccounts/logstoracc123" + $avZone = "1" + $EnableDRjob = New-AzRecoveryServicesAsrReplicationProtectedItem -VMwareToAzure -ProtectableItem $pi -Name $rpiName -ProtectionContainerMapping $pcm -ProcessServer $ProcessServers[0] -Account $AccountHandles[0] -RecoveryResourceGroupId $ResourceGroupId -logStorageAccountId $LogStorageAccountId -RecoveryAvailabilityZone $avZone -RecoveryAzureNetworkId $RecoveryVnetId -RecoveryAzureSubnetName "Subnet-1" +} + +function V2AUpdateRPIWithAvZone +{ + param([string] $vaultSettingsFilePath) + Import-AzRecoveryServicesAsrVaultSettingsFile -Path $vaultSettingsFilePath + $PrimaryFabricName = "WIN-B6L6OJO1E6Q" + $pcName = "WIN-B6L6OJO1E6Q" + $fabric = Get-AsrFabric -FriendlyName $PrimaryFabricName + $pc = Get-ASRProtectionContainer -FriendlyName $pcName -Fabric $fabric + $PolicyName1 = "test-policy" + $Policy1 = Get-AzRecoveryServicesAsrPolicy -Name $PolicyName1 + $pcm = Get-AzRecoveryServicesAsrProtectionContainerMapping -ProtectionContainer $pc -Name "f858b936-ee57-44c4-9ff9-2907d418fbd2" + $piName = "vi-win-vm-new" + $rpi = Get-ASRReplicationProtectedItem -ProtectionContainer $pc -FriendlyName $piName + $rpiName = "vi-win-vm" + $avZoneSet = "2" + $UpdateVmjob = Set-AzRecoveryServicesAsrReplicationProtectedItem -InputObject $rpi -Name $rpiName -RecoveryAvailabilityZone $avZoneSet + $rpi = Get-AsrReplicationProtectedItem -ProtectionContainer $pc -FriendlyName $piName + Assert-NotNull($rpi.ProviderSpecificDetails.RecoveryAvailabilityZone) +} \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/V2A/V2AInput/V2AInput.VaultCredentials b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/V2A/V2AInput/V2AInput.VaultCredentials new file mode 100644 index 000000000000..db34b5d1cd37 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/V2A/V2AInput/V2AInput.VaultCredentials @@ -0,0 +1 @@ +b364ed8d-4279-4bf8-8fd1-56f8fa0ae05cvijami-rgvidyavault6077256918491479587eastusVaultsMicrosoft.RecoveryServicesMIIKaQIBAzCCCiUGCSqGSIb3DQEHAaCCChYEggoSMIIKDjCCBhcGCSqGSIb3DQEHAaCCBggEggYEMIIGADCCBfwGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAicurkF2ikQEgICB9AEggTYHP53Eam1R+SLaGPZYg5OizNxez7+UeRwGGCfXOqzdYxv/IJWyFZDnmcH38L9drFYVK8wfyv6T5iN1SkW87GtN4ZABtGkIBC9dReWFn+yWI3gk/OZPRj52FB2PPzCZY7vB5z2yfg8kiv89HZtvIVKHEWNqXt0ul+Mq4YE1JaS10TLwMpla1pJhm3sLSjV/f02QAVh8W/kOz6chEvBPv9NpjK6oXeCFLTh+pzGEbtedajV1iEwq5vn4pUPn1DbBbJ4uEvaGJXPDYt6ZPwhVigJSmJpRsDdrMqsZkAOgawVe+r1lVEE5K1RT/nKusgc432MFtnNyWy4MHzYGbAd5nI+PyMwKdfIVqrE38ZvyfOSwVxwwqcWgztcR5kPAW/lmnL1YA9tJt41p+TkaM3V5j448Jp98FUzew+Y9428F9f/GCCLan9x6A3EHgSMbT1IlBhKxQNGJsWiDnbjOY1W765I3KsOPXsKkumUREGEkuZ6T6cVQMdwDaFw/0HgMyoqrwMbZQwAz/pNcdvbac7Nh/hqxApUi67I9zlAzMJs0Aeh7vM7yW2DGfRkqjnLHgirHPsxMiddKxG/gl6bLD25Yve6mdpacbyC/X52gdcwD9XE3a9vDQYI9jsmui7rEoWM66rJsTTWwpFYPqEDAmHDB0t/T/QjE9aDVbOKGzvzYFxy4Vd6S16nnvCHhTCPd3OFSe1tuBQXNmaxrPl2qROaczeaEI+jguchFOI8sFNOkM7fA8IrQVmKZ6E6xJOkGJaPXWvv6Ip9QFJNKjJUOGi4enY5OOCT+9+zMZBivjnlsOnC3NA4Qg2rtP4wM7B5xdDDvxo2QE7nFKbLdmIVnoXndvNjjCbUxZrubMimSdD2o0hNLyi3xcSjSWECljIjWpK3Gi6FpHQItCds/Fz4bAxocnd7bwSevvU/Y+WsMHI+rRotoct3wK9T38eE3/DN2oP/9QP6IGJy0Ejs9sjV+1oOPemxDLlef4C684cI089Ta+ElnlYZjuzGSxKgnJbGnFOUeLX7zR25XSVWFLPWBgV7XroUJgKMbQADGV6TCv1coeUUEasKdwG+fnu8B51Ng1YC+VczovZGkjjR2KJdqWN9CNufj2kxU92kfj29aapFTrVRDJHeKSV9BH5XBjBb0MLDa+hwYblYgz8Ql1cBv9nBlVouOql/yTO+YfFj2u0EFJl+IWrB6lJYq+uuCm+CaWohrXa7QACWiZ8AEXfRCvU/S5YAZCt5j3ScTRZ7va+ZlEv6r9rZk9zrlqTZOAKRDyAsmQDqo36Bs/rLl9ZCu9CF5kceCAfkkA5QRuWyRovOp7QtTgcRdb2RGw+GIFV7iIspy6aiff2eAjJrsP0Lkk93rMaOfVxt3yB1itLstxretQhC5cA8nMxj92ovBbnz7agiYttdbYp+jMhOqInw83KCTFnUNynh8CtuCEcZjbfTQQJV/VakWX9Nf1roWeAAA99qEBB371Yv9jvDuTdk0WjVqpDyHmsMaWCgmVSqOPk+xf8bQ3zR1NEozfLuPrnZWYY/VBe7w5ZZN9G0LqM2AOEb43KcRIxUNWf51RHPUKqTKbn+HwdnyYszsM1Aaf1imgZcCGKCirvm8FPZRyIvaqKAnBGczE6sVDFyVfTan2XrMyRPNXRtr/RPWsKUejGB6jANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADcANgA0AGMAZgBmADMAZgAtAGYANgA4ADYALQA0ADUAMwBiAC0AYQAwADYAOQAtADgANwA1ADQANQA1AGEAMQBkAGEAZgBlMGsGCSsGAQQBgjcRATFeHlwATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByACAAdgAxAC4AMDCCA+8GCSqGSIb3DQEHBqCCA+AwggPcAgEAMIID1QYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIFbv06Rj/4xMCAgfQgIIDqMuKRiYkp+ibtiHDW6z0Th9mkyRE6/r3Aj+HKldtcVXKUxPyhkNQietL4PLEMF/+hnJa6J0/eTQPG2E/C2CTA6S5M341sDgnmj4AY001AarSEsKSDuMcWiAhEk91LJfi4dmOC7WnQZF5S7V5Ry1Q+BFkqy3elg3o9shoC3M8qxAfy+lLIZW3YcWNfX9lp7PTn3lYvc/9l+U8xows5T0hr9V0HCrDgx7J7JUu4zblFc+g/bmSz7Qu7AgYb7qBjckZq+Ce27/YSlYFROpb1ubsd/gk+kAIdCF21ns0plcYh2SSOAdeaWeLOEIa1LHahj9PdFLuMpCGO+xewlmQ86G4XTP9er4m7X0B3mfXfJ2hhq2By18CTyXi3AvkJAqpsFBclTxm/zfzVvUG0Xw9bfbQxaFDVISg0MQlLoUOZnMxQ54dS7c2oFwhZWOiBt/7Gzwkn0x9ODHp7oB9GQOSVXQs+Qa505cX7ztVnkgw47oOkF9PV1M8zMSxn7rsvLgorWidsnP1Zxwlq9Neyi8TDuOiy2oWHFS2arKJsqYknP/nEkPpcs9mgzXWlbU0DcZGHec9prpwyfZTnneV10KWGZswyQUxMRt4JlNI7dTQOuQVmxcgRamXsF+1Rv2f6HNbpIJkNSsVNPZjaeYXJNGyzesvUxXn+/OmhVnx1Kbg5u5d9TF+bSuy35MM/LD5XQcpBGTjv+XkE8kTxGF8oMsspcF6ggKfLaVhcweTDS7xa56VA1WbdizHDhKKrwEkqCIWTfnQlpqE5Gr2A3bmWUleCX9+zUQLf612YQWO8Z6EqFsExgqaqoYtBm6+NDEC9bRYK8dJgcIVKDvPMeGylodfhUjK6bqWokIdB8hjbzYY775n572mlz2J+uT9x5nuqMni+addK3IVVFuppEnMgtuyBHEWOV6Jgb3QN9OTdc7XIfikYG6lJd+WXlWbNZArDGsfU/DXZOGdXb8XXnaP4FC+/jRBrJbWfqxAP4v3NjxFkzEir07fxowWjJsdaeVJIt4c+gkbF7RQWzVD+wYr+JjD1NsR4PQMIgIb1M4nKNSOYaNfu3PD3oL6uZuNonAKxuzqX1rHKnmfuEPIo85yEVdpcOy+VECltfTekGZDd6stGDS85oj29tYv+MGS7YQrD13Ru7Z7dkJ5rXFqSL3c6cXFb0IkR5lCk+hkcEHpvsiS4JYAmIhsTZpNo9pk7uaiqa8iDm03TGCP7/8IP+eY6hFK0AxGA0XVljlTMoSd4TA7MB8wBwYFKw4DAhoEFOxkPM9RwvsjJ34EZDJyjrjyiLEwBBT9Bx3TrCH8g3De8fVnznISCR6iIwICB9A=2.0https://login.windows.net8f8d7bbe-57c8-4422-be95-3e8cf3e72373cb2178be-77fc-4fb9-90d5-a0c08ec60b3fhttps://RecoveryServiceVault/eastus/vidyavault/6077256918491479587https://pod01-id1.eus.backup.windowsazure.com/restapi/None \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/TestCreateRPIWithAvZone.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/TestCreateRPIWithAvZone.json new file mode 100644 index 000000000000..8f4a2e868e77 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/TestCreateRPIWithAvZone.json @@ -0,0 +1,1060 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "070d2d23-8a4f-422e-a26b-04c590021624" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.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-ms-original-request-ids": [ + "48a46ff5-a18e-4683-8a00-4a9044e65720", + "48a46ff5-a18e-4683-8a00-4a9044e65720", + "48a46ff5-a18e-4683-8a00-4a9044e65720", + "48a46ff5-a18e-4683-8a00-4a9044e65720" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "48a46ff5-a18e-4683-8a00-4a9044e65720" + ], + "x-ms-correlation-request-id": [ + "48a46ff5-a18e-4683-8a00-4a9044e65720" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210122T183911Z:48a46ff5-a18e-4683-8a00-4a9044e65720" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Jan 2021 18:39:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "3780" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prakwus\",\r\n \"etag\": \"W/\\\"datetime'2020-04-23T06%3A54%3A06.3298168Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakwus\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"H2ATest\",\r\n \"etag\": \"W/\\\"datetime'2021-01-22T15%3A44%3A11.2653776Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"prakccy\",\r\n \"etag\": \"W/\\\"datetime'2019-07-19T07%3A35%3A53.8406541Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakccy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"prakccysignoff-MigrateVault-k56exc39\",\r\n \"etag\": \"W/\\\"datetime'2020-01-09T14%3A40%3A47.7045371Z'\\\"\",\r\n \"tags\": {\r\n \"Migrate Project\": \"prakccysignoff\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakccysignoff-MigrateVault-k56exc39\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"prakccysignoff5efersvault\",\r\n \"etag\": \"W/\\\"datetime'2020-01-05T09%3A46%3A08.9360831Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakccysignoff5efersvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakmigration4e6brsvault\",\r\n \"etag\": \"W/\\\"datetime'2019-11-13T11%3A06%3A09.5623251Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakmigration4e6brsvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakrcmvault\",\r\n \"etag\": \"W/\\\"datetime'2020-08-20T12%3A50%3A55.7577231Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakrcmvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakv2a\",\r\n \"etag\": \"W/\\\"datetime'2019-03-26T11%3A45%3A29.5678914Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakv2a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea8b492f-20ef-4ff0-8f42-2dcfb942c3e3" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611337151359)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941951359)\\/\",\"ClientRequestId\":\"2a2be3b7-fe6b-48e7-a16c-c2b9208cc6f3-2021-01-22 18:39:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PEK7jZ/K0NVSyCv8sbmW9xXMsUHMNlrA2lm3TWnBdSs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "ea8b492f-20ef-4ff0-8f42-2dcfb942c3e3 1/22/2021 6:39:13 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ea8b492f-20ef-4ff0-8f42-2dcfb942c3e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "58376f83-c7fa-43e9-9f25-15443079f2f1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210122T183913Z:58376f83-c7fa-43e9-9f25-15443079f2f1" + ], + "Date": [ + "Fri, 22 Jan 2021 18:39:12 GMT" + ], + "Content-Length": [ + "15917" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"H2ASite\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite\",\r\n \"properties\": {\r\n \"friendlyName\": \"H2ASite\",\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\": \"1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"10d8a11520fcf04c0af7379aedb1c544be28087a281f0dc7d3b9acb3b1f49b0e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/10d8a11520fcf04c0af7379aedb1c544be28087a281f0dc7d3b9acb3b1f49b0e\",\r\n \"properties\": {\r\n \"friendlyName\": \"prgoyal-vc\",\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\": \"264856f2-77e6-414b-9984-17fb4753d5f8\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"prgoyal-cs\",\r\n \"id\": \"C8C9CA35-DBBC-7443-B12483DF8C635802\",\r\n \"ipAddress\": \"10.150.99.208\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:06:21Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"mobilityServiceUpdates\": [],\r\n \"hostId\": \"C8C9CA35-DBBC-7443-B12483DF8C635802\",\r\n \"machineCount\": \"1\",\r\n \"replicationPairCount\": \"1\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 9931579392,\r\n \"availableMemoryInBytes\": 8287903003,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 107005079552,\r\n \"availableSpaceInBytes\": 87630987264,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2023-06-08T14:03:50Z\",\r\n \"sslCertExpiryRemainingDays\": 866,\r\n \"osVersion\": null,\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"818\",\r\n \"summaryMessage\": \"Process server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Process Server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6031639Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n }\r\n ],\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.32.0.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"health\": \"Warning\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2020-11-09T17:09:28Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 0,\r\n \"throughputInBytes\": 0,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": \"1\",\r\n \"marsRegistrationStatus\": \"1\"\r\n },\r\n {\r\n \"friendlyName\": \"prgoyal-vc\",\r\n \"id\": \"A7C02967-0032-354D-92F582159960DCA9\",\r\n \"ipAddress\": \"10.150.103.112\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.36.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:07:25Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.36.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.36.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"A7C02967-0032-354D-92F582159960DCA9\",\r\n \"machineCount\": \"3\",\r\n \"replicationPairCount\": \"6\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 7515660288,\r\n \"availableMemoryInBytes\": 2765011420,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 107005079552,\r\n \"availableSpaceInBytes\": 59389935957,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2023-06-07T11:07:32Z\",\r\n \"sslCertExpiryRemainingDays\": 865,\r\n \"osVersion\": null,\r\n \"healthErrors\": [],\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.36.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"health\": \"Normal\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2020-11-09T17:09:27Z\",\r\n \"throughputUploadPendingDataInBytes\": -1,\r\n \"throughputInMBps\": -1,\r\n \"throughputInBytes\": -1,\r\n \"throughputStatus\": \"Grey\",\r\n \"marsCommunicationStatus\": \"1\",\r\n \"marsRegistrationStatus\": \"1\"\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"A7C02967-0032-354D-92F582159960DCA9\",\r\n \"ipAddress\": \"10.150.103.112\",\r\n \"name\": \"prgoyal-vc\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.36.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:09:36Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"retentionVolumes\": [\r\n {\r\n \"volumeName\": \"E\",\r\n \"capacityInBytes\": 10734268416,\r\n \"freeSpaceInBytes\": 10688806912,\r\n \"thresholdPercentage\": null\r\n }\r\n ],\r\n \"dataStores\": [],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [],\r\n \"diskCount\": 0,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"marsAgentVersion\": \"2.0.9188.0\",\r\n \"marsAgentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.36.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9188.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n },\r\n {\r\n \"id\": \"C8C9CA35-DBBC-7443-B12483DF8C635802\",\r\n \"ipAddress\": \"10.150.99.208\",\r\n \"name\": \"prgoyal-cs\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:09:22Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"retentionVolumes\": [\r\n {\r\n \"volumeName\": \"E\",\r\n \"capacityInBytes\": 42946523136,\r\n \"freeSpaceInBytes\": 42851418112,\r\n \"thresholdPercentage\": null\r\n }\r\n ],\r\n \"dataStores\": [],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"821\",\r\n \"summaryMessage\": \"Master Target server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Master Target server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6642422Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n }\r\n ],\r\n \"diskCount\": 0,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"marsAgentVersion\": \"2.0.9165.0\",\r\n \"marsAgentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.32.0.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9165.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [\r\n {\r\n \"accountId\": \"1\",\r\n \"accountName\": \"adminpass\"\r\n },\r\n {\r\n \"accountId\": \"2\",\r\n \"accountName\": \"rootpass\"\r\n },\r\n {\r\n \"accountId\": \"3\",\r\n \"accountName\": \"vcenter\"\r\n },\r\n {\r\n \"accountId\": \"4\",\r\n \"accountName\": \"dotadmin\"\r\n }\r\n ],\r\n \"replicationPairCount\": \"7\",\r\n \"processServerCount\": \"2\",\r\n \"agentCount\": \"4\",\r\n \"protectedServers\": \"4\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 7515660288,\r\n \"availableMemoryInBytes\": 2765011420,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 107005079552,\r\n \"availableSpaceInBytes\": 59389935957,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.103.112\",\r\n \"agentVersion\": \"9.36.0.0\",\r\n \"hostName\": \"prgoyal-vc\",\r\n \"lastHeartbeat\": \"2020-11-09T17:09:52.3021092Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"sslCertExpiryDate\": \"2023-06-07T11:07:31Z\",\r\n \"sslCertExpiryRemainingDays\": 865,\r\n \"psTemplateVersion\": \"202008.06.00\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.36.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"821\",\r\n \"summaryMessage\": \"Master Target server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Master Target server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6642422Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n },\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"818\",\r\n \"summaryMessage\": \"Process server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Process Server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6031639Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n },\r\n {\r\n \"errorSource\": \"FabricHealthErrorOnPrimary\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"FabricInfrastructure\",\r\n \"errorCode\": \"813\",\r\n \"summaryMessage\": \"Recovery Services Provider heartbeat is missing\",\r\n \"errorMessage\": \"The Configuration server prgoyal-vc isn't connected.\",\r\n \"possibleCauses\": \"Required services may not be running on the Configuration server prgoyal-vc.\",\r\n \"recommendedAction\": \"\\n Ensure that:\\n 1. The Microsoft Azure Site Recovery Provider service is running.\\n 2. The server can connect to the Internet.\\n 3. The proxy settings used to connect to Azure Site Recovery are correct.\\n 4. The Provider version running on the server is up-to-date. Click Download Provider to obtain the latest version\\n 5. The certificate used to connect from Azure to the Configuration server is valid.\\n \",\r\n \"creationTimeUtc\": \"2020-11-09T10:10:41.3590824Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"H2ASite1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite1\",\r\n \"properties\": {\r\n \"friendlyName\": \"H2ASite1\",\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\": \"d25008a9-fc90-52ea-ba9a-04d4801bb29b\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"7587b389700f77dc3e15457c50c38930256051c1bc157f2c3b28264e721ac3c5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/7587b389700f77dc3e15457c50c38930256051c1bc157f2c3b28264e721ac3c5\",\r\n \"properties\": {\r\n \"friendlyName\": \"WIN-MVMTL40CT2K\",\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\": \"e2e6c967-95e7-4170-b3e0-b5f3d0d43421\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"WIN-MVMTL40CT2K\",\r\n \"id\": \"B2A95752-4892-7C4E-9CF9875071753F8C\",\r\n \"ipAddress\": \"10.150.208.16\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.39.0.0\",\r\n \"lastHeartbeat\": \"2021-01-18T12:03:39Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.39.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.39.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"B2A95752-4892-7C4E-9CF9875071753F8C\",\r\n \"machineCount\": \"0\",\r\n \"replicationPairCount\": \"0\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"66%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 20266405888,\r\n \"availableMemoryInBytes\": 17222391724,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 85372956672,\r\n \"availableSpaceInBytes\": 62634597717,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2024-01-18T19:36:14Z\",\r\n \"sslCertExpiryRemainingDays\": 1091,\r\n \"osVersion\": null,\r\n \"healthErrors\": [],\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.39.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"health\": \"Normal\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2021-01-18T12:02:22Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 0,\r\n \"throughputInBytes\": 0,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": \"1\",\r\n \"marsRegistrationStatus\": \"1\"\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"B2A95752-4892-7C4E-9CF9875071753F8C\",\r\n \"ipAddress\": \"10.150.208.16\",\r\n \"name\": \"WIN-MVMTL40CT2K\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.39.0.0\",\r\n \"lastHeartbeat\": \"2021-01-18T12:02:29Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"retentionVolumes\": [],\r\n \"dataStores\": [],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [],\r\n \"diskCount\": 0,\r\n \"osVersion\": \"Microsoft Windows Server 2016 Standard\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"marsAgentVersion\": \"2.0.9196.0\",\r\n \"marsAgentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.39.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9196.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [],\r\n \"replicationPairCount\": \"0\",\r\n \"processServerCount\": \"1\",\r\n \"agentCount\": \"0\",\r\n \"protectedServers\": \"0\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"66%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 20266405888,\r\n \"availableMemoryInBytes\": 17222391724,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 85372956672,\r\n \"availableSpaceInBytes\": 62634597717,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.208.16\",\r\n \"agentVersion\": \"9.39.0.0\",\r\n \"hostName\": \"WIN-MVMTL40CT2K\",\r\n \"lastHeartbeat\": \"2021-01-18T12:03:52.5691514Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"sslCertExpiryDate\": \"2024-01-18T19:36:12Z\",\r\n \"sslCertExpiryRemainingDays\": 1091,\r\n \"psTemplateVersion\": \"202011.14.00\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.39.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"FabricHealthErrorOnPrimary\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"FabricInfrastructure\",\r\n \"errorCode\": \"813\",\r\n \"summaryMessage\": \"Recovery Services Provider heartbeat is missing\",\r\n \"errorMessage\": \"The Configuration server WIN-MVMTL40CT2K isn't connected.\",\r\n \"possibleCauses\": \"Required services may not be running on the Configuration server WIN-MVMTL40CT2K.\",\r\n \"recommendedAction\": \"\\n Ensure that:\\n 1. The Microsoft Azure Site Recovery Provider service is running.\\n 2. The server can connect to the Internet.\\n 3. The proxy settings used to connect to Azure Site Recovery are correct.\\n 4. The Provider version running on the server is up-to-date. Click Download Provider to obtain the latest version\\n 5. The certificate used to connect from Azure to the Configuration server is valid.\\n \",\r\n \"creationTimeUtc\": \"2021-01-20T05:38:27.7889548Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"e2e6c967-95e7-4170-b3e0-b5f3d0d43421\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGU/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea8b492f-20ef-4ff0-8f42-2dcfb942c3e3" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611337153512)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941953512)\\/\",\"ClientRequestId\":\"673acd08-a91f-4a31-9c01-71cc048de8c0-2021-01-22 18:39:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"L/lwG+LAS1bLX6y9ixDh10rarY8dtOYtjPNVLZlKJd4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "ea8b492f-20ef-4ff0-8f42-2dcfb942c3e3 1/22/2021 6:39:13 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ea8b492f-20ef-4ff0-8f42-2dcfb942c3e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "84062009-bc86-4839-88c7-bc1913b87ff5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210122T183913Z:84062009-bc86-4839-88c7-bc1913b87ff5" + ], + "Date": [ + "Fri, 22 Jan 2021 18:39:12 GMT" + ], + "Content-Length": [ + "586" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"H2ASite\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite\",\r\n \"properties\": {\r\n \"friendlyName\": \"H2ASite\",\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\": \"1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ca75b56-0150-439b-b565-7b855c47a730" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611337153867)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941953867)\\/\",\"ClientRequestId\":\"f819e2ad-15cb-4b1e-bc42-90ecce2beefb-2021-01-22 18:39:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EQQUnPujF2nGF4bgu/dd1gyEdnRHVmskUjBX6bb+WTE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "2ca75b56-0150-439b-b565-7b855c47a730 1/22/2021 6:39:14 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "2ca75b56-0150-439b-b565-7b855c47a730" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "e0b0653f-c217-4ad8-961c-934f9ce563e3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210122T183914Z:e0b0653f-c217-4ad8-961c-934f9ce563e3" + ], + "Date": [ + "Fri, 22 Jan 2021 18:39:13 GMT" + ], + "Content-Length": [ + "601" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"name\": \"cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"H2ASite\",\r\n \"friendlyName\": \"H2ASite\",\r\n \"fabricType\": \"HyperVSite\",\r\n \"protectedItemCount\": 4,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectionContainerMappings?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ca75b56-0150-439b-b565-7b855c47a730" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611337154272)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941954272)\\/\",\"ClientRequestId\":\"be3a7fd4-1f55-4eb9-a788-dcb4993197e0-2021-01-22 18:39:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OSAqecXQl9j6x1ppvhiCrZbWVTQNyXapdglK9iZ7OrQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "2ca75b56-0150-439b-b565-7b855c47a730 1/22/2021 6:39:14 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "2ca75b56-0150-439b-b565-7b855c47a730" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "bf50fbbb-6248-4739-aaba-b7338cd71cdf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210122T183914Z:bf50fbbb-6248-4739-aaba-b7338cd71cdf" + ], + "Date": [ + "Fri, 22 Jan 2021 18:39:13 GMT" + ], + "Content-Length": [ + "1064" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectionContainerMappings/dcd9a07f-69a5-46f3-bc8e-f2db6b8e9c3e\",\r\n \"name\": \"dcd9a07f-69a5-46f3-bc8e-f2db6b8e9c3e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"sourceFabricFriendlyName\": \"H2ASite\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"b2apolicy\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectionContainerMappings?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1cd09b7f-58e2-4453-af91-2938a6f83128" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611337155096)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941955096)\\/\",\"ClientRequestId\":\"0be6c143-8788-4a70-8154-d6f1b86f61bd-2021-01-22 18:39:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ktYga6nSyWfvTOkJAiLIL7A3D5WBvdlhkw2ySIErnxA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "1cd09b7f-58e2-4453-af91-2938a6f83128 1/22/2021 6:39:15 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "1cd09b7f-58e2-4453-af91-2938a6f83128" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "4161aecd-3112-499d-97af-b46c84cd54c1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210122T183915Z:4161aecd-3112-499d-97af-b46c84cd54c1" + ], + "Date": [ + "Fri, 22 Jan 2021 18:39:14 GMT" + ], + "Content-Length": [ + "1064" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectionContainerMappings/dcd9a07f-69a5-46f3-bc8e-f2db6b8e9c3e\",\r\n \"name\": \"dcd9a07f-69a5-46f3-bc8e-f2db6b8e9c3e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"sourceFabricFriendlyName\": \"H2ASite\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"b2apolicy\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25Qb2xpY2llcz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ca75b56-0150-439b-b565-7b855c47a730" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611337154731)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941954731)\\/\",\"ClientRequestId\":\"57ef9d79-7782-4da3-955c-f2db39a3322c-2021-01-22 18:39:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VHbHQGK2KRR0IUt3SWSBAOQKkYSf1wqnSpa9nITzkNE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "2ca75b56-0150-439b-b565-7b855c47a730 1/22/2021 6:39:14 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "2ca75b56-0150-439b-b565-7b855c47a730" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "2880ac53-5277-4d8a-836d-fb5cad419a30" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210122T183915Z:2880ac53-5277-4d8a-836d-fb5cad419a30" + ], + "Date": [ + "Fri, 22 Jan 2021 18:39:14 GMT" + ], + "Content-Length": [ + "3769" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/policy1\",\r\n \"name\": \"policy1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"policy1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/v2apolicy-failback\",\r\n \"name\": \"v2apolicy-failback\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"v2apolicy-failback\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMage\",\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/testvmm\",\r\n \"name\": \"testvmm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"testvmm\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplica2012R2\",\r\n \"replicationFrequencyInSeconds\": 30,\r\n \"recoveryPoints\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"compression\": \"Enabled\",\r\n \"initialReplicationMethod\": \"OverNetwork\",\r\n \"offlineReplicationImportPath\": \"\",\r\n \"offlineReplicationExportPath\": \"\",\r\n \"replicationPort\": 8083,\r\n \"allowedAuthenticationType\": 2,\r\n \"replicaDeletionOption\": \"None\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/policy1-failback\",\r\n \"name\": \"policy1-failback\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"policy1-failback\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMage\",\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"name\": \"b2apolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"b2apolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy1\",\r\n \"name\": \"b2apolicy1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"b2apolicy1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 4,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 2,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/v2apolicy\",\r\n \"name\": \"v2apolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"v2apolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25Qb2xpY2llcy9iMmFwb2xpY3k/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc70ac5d-8f1a-4646-8082-a67381d250f6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611337155435)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941955435)\\/\",\"ClientRequestId\":\"1bcb7376-5c7e-4a87-9a9a-2418981a87b2-2021-01-22 18:39:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7R95m0paGRVJP6Fx28cKmAGFc2n5ay+0tsmyV0e6A/E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "fc70ac5d-8f1a-4646-8082-a67381d250f6 1/22/2021 6:39:15 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "fc70ac5d-8f1a-4646-8082-a67381d250f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "56674d4e-da0c-4edb-a7ac-7b63257e651a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210122T183915Z:56674d4e-da0c-4edb-a7ac-7b63257e651a" + ], + "Date": [ + "Fri, 22 Jan 2021 18:39:14 GMT" + ], + "Content-Length": [ + "522" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"name\": \"b2apolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"b2apolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25Qb2xpY2llcy9iMmFwb2xpY3k/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64d3b711-26e6-48e1-bb05-bb42552c49f4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611337156988)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941956988)\\/\",\"ClientRequestId\":\"fc29c060-43f4-4d04-8b66-5dae8acc7818-2021-01-22 18:39:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RYmUD4/YoNX8ud9+ykPKC9ukyIszGhQSi/eVIo5IcSw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "64d3b711-26e6-48e1-bb05-bb42552c49f4 1/22/2021 6:39:17 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "64d3b711-26e6-48e1-bb05-bb42552c49f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "804c5dc7-b16b-41b7-bb58-8470d8a19db2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210122T183917Z:804c5dc7-b16b-41b7-bb58-8470d8a19db2" + ], + "Date": [ + "Fri, 22 Jan 2021 18:39:17 GMT" + ], + "Content-Length": [ + "522" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"name\": \"b2apolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"b2apolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e1ba84b-bbc5-4eaf-9a38-fc8e5017f09c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "4e1ba84b-bbc5-4eaf-9a38-fc8e5017f09c 1/22/2021 6:39:15 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4e1ba84b-bbc5-4eaf-9a38-fc8e5017f09c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "d00f58bd-5dae-4c1d-976d-c3e0217bd751" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210122T183916Z:d00f58bd-5dae-4c1d-976d-c3e0217bd751" + ], + "Date": [ + "Fri, 22 Jan 2021 18:39:16 GMT" + ], + "Content-Length": [ + "10573" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/4da7bcc1-371f-445c-a942-e43dd72286c0\",\r\n \"name\": \"4da7bcc1-371f-445c-a942-e43dd72286c0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Gen2-2012R2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"4da7bcc1-371f-445c-a942-e43dd72286c0\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"0c9233ea-62b0-4dc4-9669-9ab8398997d3\",\r\n \"vhdName\": \"A020-Gen2-2012R2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"name\": \"4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Gen1-2012\",\r\n \"protectionStatus\": \"Protected\",\r\n \"replicationProtectedItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"80ba7a95-81b4-4548-9cb7-2092a88abc62\",\r\n \"vhdName\": \"A020-Gen1-2012_97E88620-FC7C-4995-A0CE-C312B10B2270\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"name\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Gen2-New\",\r\n \"protectionStatus\": \"Protected\",\r\n \"replicationProtectedItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"8d9a7efe-870a-4710-9b49-6eb4f91b2a36\",\r\n \"vhdName\": \"A020-Gen2-New\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"name\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"49b0a5e7-04a0-42f8-962b-3ef038a44552\",\r\n \"vhdName\": \"A020-VJ-Dum2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"name\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum1\",\r\n \"protectionStatus\": \"Protected\",\r\n \"replicationProtectedItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"generation\": \"0\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b9319153-00b3-45c1-9fa8-7eb7e794d4d3\",\r\n \"vhdName\": \"A020-VJ-Dum1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/e5b1d7c0-bb4f-4d2c-be66-dd365b444b90\",\r\n \"name\": \"e5b1d7c0-bb4f-4d2c-be66-dd365b444b90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Linux\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"e5b1d7c0-bb4f-4d2c-be66-dd365b444b90\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b7148155-887c-4ea3-87cd-13c564303f60\",\r\n \"vhdName\": \"A020-Linux\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"name\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a020-dum\",\r\n \"protectionStatus\": \"Protected\",\r\n \"replicationProtectedItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c164f745-d66c-4fa5-ae47-830c0d97b262\",\r\n \"vhdName\": \"a020-dum\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems?api-version=2018-07-10&$skipToken=ReplicationGroup%3ABegin\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems?api-version=2018-07-10&$skipToken=ReplicationGroup%3ABegin", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zP2FwaS12ZXJzaW9uPTIwMTgtMDctMTAmJHNraXBUb2tlbj1SZXBsaWNhdGlvbkdyb3VwJTNBQmVnaW4=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e1ba84b-bbc5-4eaf-9a38-fc8e5017f09c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611337156146)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941956146)\\/\",\"ClientRequestId\":\"c6874a0a-5d77-416c-a59a-3e7249607b26-2021-01-22 18:39:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9M1KzeJ1Hmu9QLaRARJxBFm/6fELU+tYfMSHOjjAU74=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.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": [ + "4e1ba84b-bbc5-4eaf-9a38-fc8e5017f09c 1/22/2021 6:39:16 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4e1ba84b-bbc5-4eaf-9a38-fc8e5017f09c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "8b6b4937-78fe-4d8f-b561-d28fb81f979f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210122T183916Z:8b6b4937-78fe-4d8f-b561-d28fb81f979f" + ], + "Date": [ + "Fri, 22 Jan 2021 18:39:16 GMT" + ], + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zL2Q3ZjcyZTZjLTdlM2ItNDk5NS05YWIxLWRjOGM5M2ZlMTAxMT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e1ba84b-bbc5-4eaf-9a38-fc8e5017f09c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611337156542)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941956542)\\/\",\"ClientRequestId\":\"a6eef238-1e95-4a12-8546-eebdc842b768-2021-01-22 18:39:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WXg7u6ZVRLOcY4mOpvzRWuE5++LqDZ9wYqC7hfJSnw8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "4e1ba84b-bbc5-4eaf-9a38-fc8e5017f09c 1/22/2021 6:39:16 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4e1ba84b-bbc5-4eaf-9a38-fc8e5017f09c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "3cacaf1e-fdf6-4770-b6d7-01257707c131" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210122T183916Z:3cacaf1e-fdf6-4770-b6d7-01257707c131" + ], + "Date": [ + "Fri, 22 Jan 2021 18:39:16 GMT" + ], + "Content-Length": [ + "1288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"name\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"49b0a5e7-04a0-42f8-962b-3ef038a44552\",\r\n \"vhdName\": \"A020-VJ-Dum2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zL2Q3ZjcyZTZjLTdlM2ItNDk5NS05YWIxLWRjOGM5M2ZlMTAxMT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64d3b711-26e6-48e1-bb05-bb42552c49f4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611337157293)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941957293)\\/\",\"ClientRequestId\":\"4b890682-f4af-45f2-933a-887e750c96e8-2021-01-22 18:39:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"y8eMc3Au12XwINa0KNkp5MgY0duSpyjJraEh5LBDpME=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "64d3b711-26e6-48e1-bb05-bb42552c49f4 1/22/2021 6:39:17 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "64d3b711-26e6-48e1-bb05-bb42552c49f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "ea0f03be-d896-481d-89b3-e696e2c6c580" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210122T183917Z:ea0f03be-d896-481d-89b3-e696e2c6c580" + ], + "Date": [ + "Fri, 22 Jan 2021 18:39:17 GMT" + ], + "Content-Length": [ + "1288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"name\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"49b0a5e7-04a0-42f8-962b-3ef038a44552\",\r\n \"vhdName\": \"A020-VJ-Dum2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9kN2Y3MmU2Yy03ZTNiLTQ5OTUtOWFiMS1kYzhjOTNmZTEwMTE/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"hvHostVmId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"vmName\": \"A020-VJ-Dum2\",\r\n \"osType\": \"Windows\",\r\n \"targetStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Storage/storageAccounts/hrasa\",\r\n \"targetAzureVmName\": \"A020-VJ-Dum2\",\r\n \"targetAzureV2ResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg\",\r\n \"targetAvailabilityZone\": \"1\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64d3b711-26e6-48e1-bb05-bb42552c49f4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611337157654)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941957654)\\/\",\"ClientRequestId\":\"6006e820-8f6c-40ff-ad73-b4b1ec1752c6-2021-01-22 18:39:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Il9xnz80drDjxVrT0HgnYWZudVDUqrA4+38db4nNeig=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1089" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011/operationresults/8ae0287c-b4e7-40fe-8738-ccc8374e1f3c?api-version=2018-07-10" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/8ae0287c-b4e7-40fe-8738-ccc8374e1f3c", + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/8ae0287c-b4e7-40fe-8738-ccc8374e1f3c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationOperationStatus/8ae0287c-b4e7-40fe-8738-ccc8374e1f3c?api-version=2018-07-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "64d3b711-26e6-48e1-bb05-bb42552c49f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "89dd8ebc-7130-40cf-801d-146df67367dd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210122T183919Z:89dd8ebc-7130-40cf-801d-146df67367dd" + ], + "Date": [ + "Fri, 22 Jan 2021 18:39:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/8ae0287c-b4e7-40fe-8738-ccc8374e1f3c?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25Kb2JzLzhhZTAyODdjLWI0ZTctNDBmZS04NzM4LWNjYzgzNzRlMWYzYz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64d3b711-26e6-48e1-bb05-bb42552c49f4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611337159581)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941959581)\\/\",\"ClientRequestId\":\"6cbc746d-f3ae-4b51-9f27-31c3291074c5-2021-01-22 18:39:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ap6E8t1xyeC8lWaE25Km9HTtMSHhp+3x/UzLwNhFAs8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/8ae0287c-b4e7-40fe-8738-ccc8374e1f3c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "64d3b711-26e6-48e1-bb05-bb42552c49f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "c2829da9-0ecd-4acf-a740-52927ff1babf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210122T183919Z:c2829da9-0ecd-4acf-a740-52927ff1babf" + ], + "Date": [ + "Fri, 22 Jan 2021 18:39:19 GMT" + ], + "Content-Length": [ + "3336" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/8ae0287c-b4e7-40fe-8738-ccc8374e1f3c\",\r\n \"name\": \"8ae0287c-b4e7-40fe-8738-ccc8374e1f3c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"64d3b711-26e6-48e1-bb05-bb42552c49f4 ActivityId: 89dd8ebc-7130-40cf-801d-146df67367dd\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\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-01-22T18:39:19.0226129Z\",\r\n \"endTime\": \"2021-01-22T18:39:19.7334068Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\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-01-22T18:39:19.1275918Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Identifying the replication 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-01-22T18:39:18.8115615Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"targetObjectName\": \"A020-VJ-Dum2\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"primaryVmName\": \"A020-VJ-Dum2\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"A020-VJ-Dum2\",\r\n \"protectionProfileId\": \"3e031e8e-87c4-5c1d-8ca2-19e3483da958\",\r\n \"primaryCloudId\": \"cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"primaryCloudName\": \"H2ASite\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"primaryVmmName\": \"H2ASite\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c" + } +} \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/TestCreateRPIWithPPG.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/TestCreateRPIWithPPG.json new file mode 100644 index 000000000000..9200137f7bd0 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/TestCreateRPIWithPPG.json @@ -0,0 +1,1060 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "462928e3-f8bc-45ba-ba09-6fd2c9f8065e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.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-ms-original-request-ids": [ + "4caf1fd8-ce5e-4bfb-bb57-1ad169d61506", + "4caf1fd8-ce5e-4bfb-bb57-1ad169d61506", + "4caf1fd8-ce5e-4bfb-bb57-1ad169d61506", + "4caf1fd8-ce5e-4bfb-bb57-1ad169d61506" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "4caf1fd8-ce5e-4bfb-bb57-1ad169d61506" + ], + "x-ms-correlation-request-id": [ + "4caf1fd8-ce5e-4bfb-bb57-1ad169d61506" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T183405Z:4caf1fd8-ce5e-4bfb-bb57-1ad169d61506" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Jan 2021 18:34:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "3780" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prakwus\",\r\n \"etag\": \"W/\\\"datetime'2020-04-23T06%3A54%3A06.3298168Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakwus\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"H2ATest\",\r\n \"etag\": \"W/\\\"datetime'2021-01-22T15%3A44%3A11.2653776Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"prakccy\",\r\n \"etag\": \"W/\\\"datetime'2019-07-19T07%3A35%3A53.8406541Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakccy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"prakccysignoff-MigrateVault-k56exc39\",\r\n \"etag\": \"W/\\\"datetime'2020-01-09T14%3A40%3A47.7045371Z'\\\"\",\r\n \"tags\": {\r\n \"Migrate Project\": \"prakccysignoff\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakccysignoff-MigrateVault-k56exc39\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"prakccysignoff5efersvault\",\r\n \"etag\": \"W/\\\"datetime'2020-01-05T09%3A46%3A08.9360831Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakccysignoff5efersvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakmigration4e6brsvault\",\r\n \"etag\": \"W/\\\"datetime'2019-11-13T11%3A06%3A09.5623251Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakmigration4e6brsvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakrcmvault\",\r\n \"etag\": \"W/\\\"datetime'2020-08-20T12%3A50%3A55.7577231Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakrcmvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakv2a\",\r\n \"etag\": \"W/\\\"datetime'2019-03-26T11%3A45%3A29.5678914Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakv2a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2729ccbb-563e-4ae8-abf6-08b96df3a868" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611336845430)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941645430)\\/\",\"ClientRequestId\":\"947b862c-93d8-4632-b309-d1eee1e03702-2021-01-22 18:34:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LVR9JeX6F9l97c3o0XQ4H8lA98ppa/XrkJc2k2DoOtE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "2729ccbb-563e-4ae8-abf6-08b96df3a868 1/22/2021 6:34:06 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "2729ccbb-563e-4ae8-abf6-08b96df3a868" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "8f66c5f0-438a-42d0-a904-18d2b06c3366" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T183407Z:8f66c5f0-438a-42d0-a904-18d2b06c3366" + ], + "Date": [ + "Fri, 22 Jan 2021 18:34:06 GMT" + ], + "Content-Length": [ + "15917" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"H2ASite\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite\",\r\n \"properties\": {\r\n \"friendlyName\": \"H2ASite\",\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\": \"1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"10d8a11520fcf04c0af7379aedb1c544be28087a281f0dc7d3b9acb3b1f49b0e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/10d8a11520fcf04c0af7379aedb1c544be28087a281f0dc7d3b9acb3b1f49b0e\",\r\n \"properties\": {\r\n \"friendlyName\": \"prgoyal-vc\",\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\": \"264856f2-77e6-414b-9984-17fb4753d5f8\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"prgoyal-cs\",\r\n \"id\": \"C8C9CA35-DBBC-7443-B12483DF8C635802\",\r\n \"ipAddress\": \"10.150.99.208\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:06:21Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"mobilityServiceUpdates\": [],\r\n \"hostId\": \"C8C9CA35-DBBC-7443-B12483DF8C635802\",\r\n \"machineCount\": \"1\",\r\n \"replicationPairCount\": \"1\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 9931579392,\r\n \"availableMemoryInBytes\": 8287903003,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 107005079552,\r\n \"availableSpaceInBytes\": 87630987264,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2023-06-08T14:03:50Z\",\r\n \"sslCertExpiryRemainingDays\": 866,\r\n \"osVersion\": null,\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"818\",\r\n \"summaryMessage\": \"Process server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Process Server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6031639Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n }\r\n ],\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.32.0.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"health\": \"Warning\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2020-11-09T17:09:28Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 0,\r\n \"throughputInBytes\": 0,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": \"1\",\r\n \"marsRegistrationStatus\": \"1\"\r\n },\r\n {\r\n \"friendlyName\": \"prgoyal-vc\",\r\n \"id\": \"A7C02967-0032-354D-92F582159960DCA9\",\r\n \"ipAddress\": \"10.150.103.112\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.36.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:07:25Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.36.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.36.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"A7C02967-0032-354D-92F582159960DCA9\",\r\n \"machineCount\": \"3\",\r\n \"replicationPairCount\": \"6\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 7515660288,\r\n \"availableMemoryInBytes\": 2765011420,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 107005079552,\r\n \"availableSpaceInBytes\": 59389935957,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2023-06-07T11:07:32Z\",\r\n \"sslCertExpiryRemainingDays\": 865,\r\n \"osVersion\": null,\r\n \"healthErrors\": [],\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.36.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"health\": \"Normal\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2020-11-09T17:09:27Z\",\r\n \"throughputUploadPendingDataInBytes\": -1,\r\n \"throughputInMBps\": -1,\r\n \"throughputInBytes\": -1,\r\n \"throughputStatus\": \"Grey\",\r\n \"marsCommunicationStatus\": \"1\",\r\n \"marsRegistrationStatus\": \"1\"\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"A7C02967-0032-354D-92F582159960DCA9\",\r\n \"ipAddress\": \"10.150.103.112\",\r\n \"name\": \"prgoyal-vc\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.36.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:09:36Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"retentionVolumes\": [\r\n {\r\n \"volumeName\": \"E\",\r\n \"capacityInBytes\": 10734268416,\r\n \"freeSpaceInBytes\": 10688806912,\r\n \"thresholdPercentage\": null\r\n }\r\n ],\r\n \"dataStores\": [],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [],\r\n \"diskCount\": 0,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"marsAgentVersion\": \"2.0.9188.0\",\r\n \"marsAgentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.36.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9188.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n },\r\n {\r\n \"id\": \"C8C9CA35-DBBC-7443-B12483DF8C635802\",\r\n \"ipAddress\": \"10.150.99.208\",\r\n \"name\": \"prgoyal-cs\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:09:22Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"retentionVolumes\": [\r\n {\r\n \"volumeName\": \"E\",\r\n \"capacityInBytes\": 42946523136,\r\n \"freeSpaceInBytes\": 42851418112,\r\n \"thresholdPercentage\": null\r\n }\r\n ],\r\n \"dataStores\": [],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"821\",\r\n \"summaryMessage\": \"Master Target server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Master Target server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6642422Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n }\r\n ],\r\n \"diskCount\": 0,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"marsAgentVersion\": \"2.0.9165.0\",\r\n \"marsAgentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.32.0.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9165.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [\r\n {\r\n \"accountId\": \"1\",\r\n \"accountName\": \"adminpass\"\r\n },\r\n {\r\n \"accountId\": \"2\",\r\n \"accountName\": \"rootpass\"\r\n },\r\n {\r\n \"accountId\": \"3\",\r\n \"accountName\": \"vcenter\"\r\n },\r\n {\r\n \"accountId\": \"4\",\r\n \"accountName\": \"dotadmin\"\r\n }\r\n ],\r\n \"replicationPairCount\": \"7\",\r\n \"processServerCount\": \"2\",\r\n \"agentCount\": \"4\",\r\n \"protectedServers\": \"4\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 7515660288,\r\n \"availableMemoryInBytes\": 2765011420,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 107005079552,\r\n \"availableSpaceInBytes\": 59389935957,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.103.112\",\r\n \"agentVersion\": \"9.36.0.0\",\r\n \"hostName\": \"prgoyal-vc\",\r\n \"lastHeartbeat\": \"2020-11-09T17:09:52.3021092Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"sslCertExpiryDate\": \"2023-06-07T11:07:31Z\",\r\n \"sslCertExpiryRemainingDays\": 865,\r\n \"psTemplateVersion\": \"202008.06.00\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.36.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"821\",\r\n \"summaryMessage\": \"Master Target server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Master Target server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6642422Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n },\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"818\",\r\n \"summaryMessage\": \"Process server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Process Server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6031639Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n },\r\n {\r\n \"errorSource\": \"FabricHealthErrorOnPrimary\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"FabricInfrastructure\",\r\n \"errorCode\": \"813\",\r\n \"summaryMessage\": \"Recovery Services Provider heartbeat is missing\",\r\n \"errorMessage\": \"The Configuration server prgoyal-vc isn't connected.\",\r\n \"possibleCauses\": \"Required services may not be running on the Configuration server prgoyal-vc.\",\r\n \"recommendedAction\": \"\\n Ensure that:\\n 1. The Microsoft Azure Site Recovery Provider service is running.\\n 2. The server can connect to the Internet.\\n 3. The proxy settings used to connect to Azure Site Recovery are correct.\\n 4. The Provider version running on the server is up-to-date. Click Download Provider to obtain the latest version\\n 5. The certificate used to connect from Azure to the Configuration server is valid.\\n \",\r\n \"creationTimeUtc\": \"2020-11-09T10:10:41.3590824Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"H2ASite1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite1\",\r\n \"properties\": {\r\n \"friendlyName\": \"H2ASite1\",\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\": \"d25008a9-fc90-52ea-ba9a-04d4801bb29b\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"7587b389700f77dc3e15457c50c38930256051c1bc157f2c3b28264e721ac3c5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/7587b389700f77dc3e15457c50c38930256051c1bc157f2c3b28264e721ac3c5\",\r\n \"properties\": {\r\n \"friendlyName\": \"WIN-MVMTL40CT2K\",\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\": \"e2e6c967-95e7-4170-b3e0-b5f3d0d43421\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"WIN-MVMTL40CT2K\",\r\n \"id\": \"B2A95752-4892-7C4E-9CF9875071753F8C\",\r\n \"ipAddress\": \"10.150.208.16\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.39.0.0\",\r\n \"lastHeartbeat\": \"2021-01-18T12:03:39Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.39.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.39.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"B2A95752-4892-7C4E-9CF9875071753F8C\",\r\n \"machineCount\": \"0\",\r\n \"replicationPairCount\": \"0\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"66%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 20266405888,\r\n \"availableMemoryInBytes\": 17222391724,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 85372956672,\r\n \"availableSpaceInBytes\": 62634597717,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2024-01-18T19:36:14Z\",\r\n \"sslCertExpiryRemainingDays\": 1091,\r\n \"osVersion\": null,\r\n \"healthErrors\": [],\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.39.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"health\": \"Normal\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2021-01-18T12:02:22Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 0,\r\n \"throughputInBytes\": 0,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": \"1\",\r\n \"marsRegistrationStatus\": \"1\"\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"B2A95752-4892-7C4E-9CF9875071753F8C\",\r\n \"ipAddress\": \"10.150.208.16\",\r\n \"name\": \"WIN-MVMTL40CT2K\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.39.0.0\",\r\n \"lastHeartbeat\": \"2021-01-18T12:02:29Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"retentionVolumes\": [],\r\n \"dataStores\": [],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [],\r\n \"diskCount\": 0,\r\n \"osVersion\": \"Microsoft Windows Server 2016 Standard\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"marsAgentVersion\": \"2.0.9196.0\",\r\n \"marsAgentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.39.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9196.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [],\r\n \"replicationPairCount\": \"0\",\r\n \"processServerCount\": \"1\",\r\n \"agentCount\": \"0\",\r\n \"protectedServers\": \"0\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"66%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 20266405888,\r\n \"availableMemoryInBytes\": 17222391724,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 85372956672,\r\n \"availableSpaceInBytes\": 62634597717,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.208.16\",\r\n \"agentVersion\": \"9.39.0.0\",\r\n \"hostName\": \"WIN-MVMTL40CT2K\",\r\n \"lastHeartbeat\": \"2021-01-18T12:03:52.5691514Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"sslCertExpiryDate\": \"2024-01-18T19:36:12Z\",\r\n \"sslCertExpiryRemainingDays\": 1091,\r\n \"psTemplateVersion\": \"202011.14.00\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.39.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"FabricHealthErrorOnPrimary\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"FabricInfrastructure\",\r\n \"errorCode\": \"813\",\r\n \"summaryMessage\": \"Recovery Services Provider heartbeat is missing\",\r\n \"errorMessage\": \"The Configuration server WIN-MVMTL40CT2K isn't connected.\",\r\n \"possibleCauses\": \"Required services may not be running on the Configuration server WIN-MVMTL40CT2K.\",\r\n \"recommendedAction\": \"\\n Ensure that:\\n 1. The Microsoft Azure Site Recovery Provider service is running.\\n 2. The server can connect to the Internet.\\n 3. The proxy settings used to connect to Azure Site Recovery are correct.\\n 4. The Provider version running on the server is up-to-date. Click Download Provider to obtain the latest version\\n 5. The certificate used to connect from Azure to the Configuration server is valid.\\n \",\r\n \"creationTimeUtc\": \"2021-01-20T05:38:27.7889548Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"e2e6c967-95e7-4170-b3e0-b5f3d0d43421\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGU/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2729ccbb-563e-4ae8-abf6-08b96df3a868" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611336847191)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941647191)\\/\",\"ClientRequestId\":\"649a38f4-ffe1-473d-9684-ef2055e626f5-2021-01-22 18:34:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MMfxwKUFx8HVECMwlc3QPGjixR3UjC5/pOK4xI4Dp3o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "2729ccbb-563e-4ae8-abf6-08b96df3a868 1/22/2021 6:34:07 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "2729ccbb-563e-4ae8-abf6-08b96df3a868" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "4d4080ba-42ae-44ef-955f-51ccfa04d6cb" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T183407Z:4d4080ba-42ae-44ef-955f-51ccfa04d6cb" + ], + "Date": [ + "Fri, 22 Jan 2021 18:34:07 GMT" + ], + "Content-Length": [ + "586" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"H2ASite\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite\",\r\n \"properties\": {\r\n \"friendlyName\": \"H2ASite\",\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\": \"1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa10c477-eddb-4383-b589-bcc7387d6971" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611336847546)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941647546)\\/\",\"ClientRequestId\":\"4e4b14e9-4537-4624-9cb4-a9a4c23f9c9d-2021-01-22 18:34:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9wC3A/374DsLuKNwO2cn4ZF+CQ0XRc1gGMGHgALuhaQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "aa10c477-eddb-4383-b589-bcc7387d6971 1/22/2021 6:34:07 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "aa10c477-eddb-4383-b589-bcc7387d6971" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "b0b6ad3b-7ea3-4890-ae66-1b130533e514" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T183407Z:b0b6ad3b-7ea3-4890-ae66-1b130533e514" + ], + "Date": [ + "Fri, 22 Jan 2021 18:34:07 GMT" + ], + "Content-Length": [ + "601" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"name\": \"cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"H2ASite\",\r\n \"friendlyName\": \"H2ASite\",\r\n \"fabricType\": \"HyperVSite\",\r\n \"protectedItemCount\": 3,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectionContainerMappings?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa10c477-eddb-4383-b589-bcc7387d6971" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611336847896)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941647896)\\/\",\"ClientRequestId\":\"a20889a9-c454-4013-8062-8fdc63ddc5db-2021-01-22 18:34:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ULlUBJP3nx+LJkpHkyNASh3zignLA0fl+jVqhTu4NKo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "aa10c477-eddb-4383-b589-bcc7387d6971 1/22/2021 6:34:08 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "aa10c477-eddb-4383-b589-bcc7387d6971" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "8e2d17f0-a698-44f6-8f61-79108c0851bf" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T183408Z:8e2d17f0-a698-44f6-8f61-79108c0851bf" + ], + "Date": [ + "Fri, 22 Jan 2021 18:34:08 GMT" + ], + "Content-Length": [ + "1064" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectionContainerMappings/dcd9a07f-69a5-46f3-bc8e-f2db6b8e9c3e\",\r\n \"name\": \"dcd9a07f-69a5-46f3-bc8e-f2db6b8e9c3e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"sourceFabricFriendlyName\": \"H2ASite\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"b2apolicy\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectionContainerMappings?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61179e18-daaa-412d-bb44-def132bdb9e1" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611336848644)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941648644)\\/\",\"ClientRequestId\":\"5aa3b306-622a-4c39-b78a-37e58268e58d-2021-01-22 18:34:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Wm/ICNsmafSM4eaP74T2RmILyCqjsj0IoT7abrzJwr8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "61179e18-daaa-412d-bb44-def132bdb9e1 1/22/2021 6:34:08 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "61179e18-daaa-412d-bb44-def132bdb9e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "e7e227d7-1821-47db-a469-3bea756613f7" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T183408Z:e7e227d7-1821-47db-a469-3bea756613f7" + ], + "Date": [ + "Fri, 22 Jan 2021 18:34:08 GMT" + ], + "Content-Length": [ + "1064" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectionContainerMappings/dcd9a07f-69a5-46f3-bc8e-f2db6b8e9c3e\",\r\n \"name\": \"dcd9a07f-69a5-46f3-bc8e-f2db6b8e9c3e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"sourceFabricFriendlyName\": \"H2ASite\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"b2apolicy\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25Qb2xpY2llcz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa10c477-eddb-4383-b589-bcc7387d6971" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611336848280)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941648280)\\/\",\"ClientRequestId\":\"2c525104-25d6-4a75-acda-3856d395c6a8-2021-01-22 18:34:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vjz0XIjH2Ndbt2c6fSOVFfgvUaY52qQiPaek/rdgwHo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "aa10c477-eddb-4383-b589-bcc7387d6971 1/22/2021 6:34:08 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "aa10c477-eddb-4383-b589-bcc7387d6971" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "41e8b2ba-53f9-48a5-b91a-52c06be4e2bc" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T183408Z:41e8b2ba-53f9-48a5-b91a-52c06be4e2bc" + ], + "Date": [ + "Fri, 22 Jan 2021 18:34:08 GMT" + ], + "Content-Length": [ + "3769" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/policy1\",\r\n \"name\": \"policy1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"policy1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/v2apolicy-failback\",\r\n \"name\": \"v2apolicy-failback\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"v2apolicy-failback\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMage\",\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/testvmm\",\r\n \"name\": \"testvmm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"testvmm\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplica2012R2\",\r\n \"replicationFrequencyInSeconds\": 30,\r\n \"recoveryPoints\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"compression\": \"Enabled\",\r\n \"initialReplicationMethod\": \"OverNetwork\",\r\n \"offlineReplicationImportPath\": \"\",\r\n \"offlineReplicationExportPath\": \"\",\r\n \"replicationPort\": 8083,\r\n \"allowedAuthenticationType\": 2,\r\n \"replicaDeletionOption\": \"None\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/policy1-failback\",\r\n \"name\": \"policy1-failback\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"policy1-failback\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMage\",\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"name\": \"b2apolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"b2apolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy1\",\r\n \"name\": \"b2apolicy1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"b2apolicy1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 4,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 2,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/v2apolicy\",\r\n \"name\": \"v2apolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"v2apolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25Qb2xpY2llcy9iMmFwb2xpY3k/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c190a543-f872-47e9-8bc6-5cb935251629" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611336848994)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941648994)\\/\",\"ClientRequestId\":\"73a95862-468f-443a-9e2d-757e93797b77-2021-01-22 18:34:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WbZ/SUIDohufu78gF90493fhMhi/BYR2r7zzch5lOEI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "c190a543-f872-47e9-8bc6-5cb935251629 1/22/2021 6:34:09 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c190a543-f872-47e9-8bc6-5cb935251629" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "804b1574-0050-4e44-8451-239e53f8c4f7" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T183409Z:804b1574-0050-4e44-8451-239e53f8c4f7" + ], + "Date": [ + "Fri, 22 Jan 2021 18:34:09 GMT" + ], + "Content-Length": [ + "522" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"name\": \"b2apolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"b2apolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25Qb2xpY2llcy9iMmFwb2xpY3k/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8764e85-15e7-4e44-967d-936079e165fc" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611336850597)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941650597)\\/\",\"ClientRequestId\":\"effd17b4-0901-46a4-88d7-1f8f3305994e-2021-01-22 18:34:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"p0roC/BhX+XF0+FQvWHfVHK0jfj847S/rwAdaLbXHLk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "a8764e85-15e7-4e44-967d-936079e165fc 1/22/2021 6:34:10 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "a8764e85-15e7-4e44-967d-936079e165fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "b3b3a1a2-01eb-4064-b098-62d0e48d9863" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T183410Z:b3b3a1a2-01eb-4064-b098-62d0e48d9863" + ], + "Date": [ + "Fri, 22 Jan 2021 18:34:10 GMT" + ], + "Content-Length": [ + "522" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"name\": \"b2apolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"b2apolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b856ca3-bd36-4c54-871e-eb5c716ad1cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "0b856ca3-bd36-4c54-871e-eb5c716ad1cd 1/22/2021 6:34:09 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "0b856ca3-bd36-4c54-871e-eb5c716ad1cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "0b90e9ea-e9ca-4422-8fbf-797d6863e2b3" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T183409Z:0b90e9ea-e9ca-4422-8fbf-797d6863e2b3" + ], + "Date": [ + "Fri, 22 Jan 2021 18:34:09 GMT" + ], + "Content-Length": [ + "10287" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/4da7bcc1-371f-445c-a942-e43dd72286c0\",\r\n \"name\": \"4da7bcc1-371f-445c-a942-e43dd72286c0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Gen2-2012R2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"4da7bcc1-371f-445c-a942-e43dd72286c0\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"0c9233ea-62b0-4dc4-9669-9ab8398997d3\",\r\n \"vhdName\": \"A020-Gen2-2012R2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"name\": \"4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Gen1-2012\",\r\n \"protectionStatus\": \"Protected\",\r\n \"replicationProtectedItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"80ba7a95-81b4-4548-9cb7-2092a88abc62\",\r\n \"vhdName\": \"A020-Gen1-2012_97E88620-FC7C-4995-A0CE-C312B10B2270\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"name\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Gen2-New\",\r\n \"protectionStatus\": \"Protected\",\r\n \"replicationProtectedItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"generation\": \"2\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"8d9a7efe-870a-4710-9b49-6eb4f91b2a36\",\r\n \"vhdName\": \"A020-Gen2-New\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"name\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"49b0a5e7-04a0-42f8-962b-3ef038a44552\",\r\n \"vhdName\": \"A020-VJ-Dum2\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"name\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b9319153-00b3-45c1-9fa8-7eb7e794d4d3\",\r\n \"vhdName\": \"A020-VJ-Dum1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/e5b1d7c0-bb4f-4d2c-be66-dd365b444b90\",\r\n \"name\": \"e5b1d7c0-bb4f-4d2c-be66-dd365b444b90\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Linux\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"e5b1d7c0-bb4f-4d2c-be66-dd365b444b90\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b7148155-887c-4ea3-87cd-13c564303f60\",\r\n \"vhdName\": \"A020-Linux\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"name\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a020-dum\",\r\n \"protectionStatus\": \"Protected\",\r\n \"replicationProtectedItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"c164f745-d66c-4fa5-ae47-830c0d97b262\",\r\n \"vhdName\": \"a020-dum\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems?api-version=2018-07-10&$skipToken=ReplicationGroup%3ABegin\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems?api-version=2018-07-10&$skipToken=ReplicationGroup%3ABegin", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zP2FwaS12ZXJzaW9uPTIwMTgtMDctMTAmJHNraXBUb2tlbj1SZXBsaWNhdGlvbkdyb3VwJTNBQmVnaW4=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b856ca3-bd36-4c54-871e-eb5c716ad1cd" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611336849750)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941649750)\\/\",\"ClientRequestId\":\"4f7c3d0d-7350-4ef2-afd8-03cc29414c41-2021-01-22 18:34:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ei/SJXKZwnKtAbk7xXOdYPlUhk9Rx9cIHZSSH3VF/CY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "0b856ca3-bd36-4c54-871e-eb5c716ad1cd 1/22/2021 6:34:10 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "0b856ca3-bd36-4c54-871e-eb5c716ad1cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "0eda9bca-b776-4300-87d3-dbb6e80ee8e7" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T183410Z:0eda9bca-b776-4300-87d3-dbb6e80ee8e7" + ], + "Date": [ + "Fri, 22 Jan 2021 18:34:09 GMT" + ], + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zL2RiYTZmOWYxLWMzYTYtNDY4MS1hNjA4LTBkYzBhN2M2NTU0YT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b856ca3-bd36-4c54-871e-eb5c716ad1cd" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611336850188)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941650188)\\/\",\"ClientRequestId\":\"7242317a-fa12-4b7f-a7ba-d220252d0d7d-2021-01-22 18:34:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xXnzbHxdtY8hSNrP1Rjqv4E/TTOeDd1+pfFY0AiQr7E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "0b856ca3-bd36-4c54-871e-eb5c716ad1cd 1/22/2021 6:34:10 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "0b856ca3-bd36-4c54-871e-eb5c716ad1cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "534ada93-c5b0-4b1d-a9b2-03b51b4c2f3b" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T183410Z:534ada93-c5b0-4b1d-a9b2-03b51b4c2f3b" + ], + "Date": [ + "Fri, 22 Jan 2021 18:34:10 GMT" + ], + "Content-Length": [ + "1288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"name\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b9319153-00b3-45c1-9fa8-7eb7e794d4d3\",\r\n \"vhdName\": \"A020-VJ-Dum1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zL2RiYTZmOWYxLWMzYTYtNDY4MS1hNjA4LTBkYzBhN2M2NTU0YT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8764e85-15e7-4e44-967d-936079e165fc" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611336850892)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941650892)\\/\",\"ClientRequestId\":\"07be0353-0764-4cdc-8650-cc9946227f85-2021-01-22 18:34:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"F2RC3oXtUFXoXEFiBvyEJPQ0cyR+eZD7IXvWn/eo4mU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "a8764e85-15e7-4e44-967d-936079e165fc 1/22/2021 6:34:11 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "a8764e85-15e7-4e44-967d-936079e165fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "13d55138-ab7e-4708-8e06-5516570c965d" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T183411Z:13d55138-ab7e-4708-8e06-5516570c965d" + ], + "Date": [ + "Fri, 22 Jan 2021 18:34:10 GMT" + ], + "Content-Length": [ + "1288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"name\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"HyperVReplicaAzure\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVVirtualMachine\",\r\n \"sourceItemId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"generation\": \"1\",\r\n \"osDetails\": null,\r\n \"diskDetails\": [\r\n {\r\n \"maxSizeMB\": 40960,\r\n \"vhdType\": \"Data\",\r\n \"vhdId\": \"b9319153-00b3-45c1-9fa8-7eb7e794d4d3\",\r\n \"vhdName\": \"A020-VJ-Dum1\"\r\n }\r\n ],\r\n \"hasPhysicalDisk\": \"NotPresent\",\r\n \"hasFibreChannelAdapter\": \"NotPresent\",\r\n \"hasSharedVhd\": \"Unknown\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9kYmE2ZjlmMS1jM2E2LTQ2ODEtYTYwOC0wZGMwYTdjNjU1NGE/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"hvHostVmId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"vmName\": \"A020-VJ-Dum1\",\r\n \"osType\": \"Windows\",\r\n \"targetStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Storage/storageAccounts/hrasa\",\r\n \"targetAzureVmName\": \"A020-VJ-Dum1\",\r\n \"targetAzureV2ResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg\",\r\n \"targetProximityPlacementGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Compute/proximityPlacementGroups/ppgh2a\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8764e85-15e7-4e44-967d-936079e165fc" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611336851237)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941651237)\\/\",\"ClientRequestId\":\"cdd5574f-f268-4689-8bd5-b09137ba3ec9-2021-01-22 18:34:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FXsrU5KJC7A5IZ3qmoUV6zqgQv5PLTj3gbZvZMB6Puc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1229" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a/operationresults/3858227a-a5f7-4c4b-a442-279c2b4ededc?api-version=2018-07-10" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/3858227a-a5f7-4c4b-a442-279c2b4ededc", + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/3858227a-a5f7-4c4b-a442-279c2b4ededc" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationOperationStatus/3858227a-a5f7-4c4b-a442-279c2b4ededc?api-version=2018-07-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "a8764e85-15e7-4e44-967d-936079e165fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2cdb227b-64fb-430a-a810-50702be7d74d" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T183413Z:2cdb227b-64fb-430a-a810-50702be7d74d" + ], + "Date": [ + "Fri, 22 Jan 2021 18:34:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/3858227a-a5f7-4c4b-a442-279c2b4ededc?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25Kb2JzLzM4NTgyMjdhLWE1ZjctNGM0Yi1hNDQyLTI3OWMyYjRlZGVkYz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8764e85-15e7-4e44-967d-936079e165fc" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611336853721)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611941653721)\\/\",\"ClientRequestId\":\"9740a7f7-e117-4ba7-8765-037d0b4130d8-2021-01-22 18:34:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wOTrOsFByLI06P/9pIROKxoAnAahOKEJ/PGr/FUt/gQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/3858227a-a5f7-4c4b-a442-279c2b4ededc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "a8764e85-15e7-4e44-967d-936079e165fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "83854e7a-7831-4e7c-a6e2-ee3c551dcc5c" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T183413Z:83854e7a-7831-4e7c-a6e2-ee3c551dcc5c" + ], + "Date": [ + "Fri, 22 Jan 2021 18:34:13 GMT" + ], + "Content-Length": [ + "706" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/3858227a-a5f7-4c4b-a442-279c2b4ededc\",\r\n \"name\": \"3858227a-a5f7-4c4b-a442-279c2b4ededc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a8764e85-15e7-4e44-967d-936079e165fc ActivityId: 2cdb227b-64fb-430a-a810-50702be7d74d\",\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 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c" + } +} \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/TestUpdateRPIWithAvZone.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/TestUpdateRPIWithAvZone.json new file mode 100644 index 000000000000..e0d49100c2f8 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/TestUpdateRPIWithAvZone.json @@ -0,0 +1,993 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e4c32c2-270f-418b-a5f5-872b6e5db707" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.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-ms-original-request-ids": [ + "856c9d2c-398a-42c5-bacd-7fdd9d5dba5a", + "856c9d2c-398a-42c5-bacd-7fdd9d5dba5a", + "856c9d2c-398a-42c5-bacd-7fdd9d5dba5a", + "856c9d2c-398a-42c5-bacd-7fdd9d5dba5a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "856c9d2c-398a-42c5-bacd-7fdd9d5dba5a" + ], + "x-ms-correlation-request-id": [ + "856c9d2c-398a-42c5-bacd-7fdd9d5dba5a" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185400Z:856c9d2c-398a-42c5-bacd-7fdd9d5dba5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Jan 2021 18:53:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "3780" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prakwus\",\r\n \"etag\": \"W/\\\"datetime'2020-04-23T06%3A54%3A06.3298168Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakwus\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"H2ATest\",\r\n \"etag\": \"W/\\\"datetime'2021-01-22T15%3A44%3A11.2653776Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"prakccy\",\r\n \"etag\": \"W/\\\"datetime'2019-07-19T07%3A35%3A53.8406541Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakccy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"prakccysignoff-MigrateVault-k56exc39\",\r\n \"etag\": \"W/\\\"datetime'2020-01-09T14%3A40%3A47.7045371Z'\\\"\",\r\n \"tags\": {\r\n \"Migrate Project\": \"prakccysignoff\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakccysignoff-MigrateVault-k56exc39\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"prakccysignoff5efersvault\",\r\n \"etag\": \"W/\\\"datetime'2020-01-05T09%3A46%3A08.9360831Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakccysignoff5efersvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakmigration4e6brsvault\",\r\n \"etag\": \"W/\\\"datetime'2019-11-13T11%3A06%3A09.5623251Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakmigration4e6brsvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakrcmvault\",\r\n \"etag\": \"W/\\\"datetime'2020-08-20T12%3A50%3A55.7577231Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakrcmvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakv2a\",\r\n \"etag\": \"W/\\\"datetime'2019-03-26T11%3A45%3A29.5678914Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakv2a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd0c76e9-22a8-4606-ab90-4e48ecc96dc9" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338040501)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942840501)\\/\",\"ClientRequestId\":\"a6e85794-60d8-48e8-8355-ec1604d161ae-2021-01-22 18:54:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LnUgzefOrm3UYE3ivBEfsDEcAL9/7oOyGRKdue4vtjM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "bd0c76e9-22a8-4606-ab90-4e48ecc96dc9 1/22/2021 6:54:01 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "bd0c76e9-22a8-4606-ab90-4e48ecc96dc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "afbeba44-5376-496c-aed8-e9ba5ad199f4" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185401Z:afbeba44-5376-496c-aed8-e9ba5ad199f4" + ], + "Date": [ + "Fri, 22 Jan 2021 18:54:01 GMT" + ], + "Content-Length": [ + "15917" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"H2ASite\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite\",\r\n \"properties\": {\r\n \"friendlyName\": \"H2ASite\",\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\": \"1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"10d8a11520fcf04c0af7379aedb1c544be28087a281f0dc7d3b9acb3b1f49b0e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/10d8a11520fcf04c0af7379aedb1c544be28087a281f0dc7d3b9acb3b1f49b0e\",\r\n \"properties\": {\r\n \"friendlyName\": \"prgoyal-vc\",\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\": \"264856f2-77e6-414b-9984-17fb4753d5f8\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"prgoyal-cs\",\r\n \"id\": \"C8C9CA35-DBBC-7443-B12483DF8C635802\",\r\n \"ipAddress\": \"10.150.99.208\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:06:21Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"mobilityServiceUpdates\": [],\r\n \"hostId\": \"C8C9CA35-DBBC-7443-B12483DF8C635802\",\r\n \"machineCount\": \"1\",\r\n \"replicationPairCount\": \"1\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 9931579392,\r\n \"availableMemoryInBytes\": 8287903003,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 107005079552,\r\n \"availableSpaceInBytes\": 87630987264,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2023-06-08T14:03:50Z\",\r\n \"sslCertExpiryRemainingDays\": 866,\r\n \"osVersion\": null,\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"818\",\r\n \"summaryMessage\": \"Process server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Process Server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6031639Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n }\r\n ],\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.32.0.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"health\": \"Warning\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2020-11-09T17:09:28Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 0,\r\n \"throughputInBytes\": 0,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": \"1\",\r\n \"marsRegistrationStatus\": \"1\"\r\n },\r\n {\r\n \"friendlyName\": \"prgoyal-vc\",\r\n \"id\": \"A7C02967-0032-354D-92F582159960DCA9\",\r\n \"ipAddress\": \"10.150.103.112\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.36.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:07:25Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.36.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.36.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"A7C02967-0032-354D-92F582159960DCA9\",\r\n \"machineCount\": \"3\",\r\n \"replicationPairCount\": \"6\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 7515660288,\r\n \"availableMemoryInBytes\": 2765011420,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 107005079552,\r\n \"availableSpaceInBytes\": 59389935957,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2023-06-07T11:07:32Z\",\r\n \"sslCertExpiryRemainingDays\": 865,\r\n \"osVersion\": null,\r\n \"healthErrors\": [],\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.36.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"health\": \"Normal\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2020-11-09T17:09:27Z\",\r\n \"throughputUploadPendingDataInBytes\": -1,\r\n \"throughputInMBps\": -1,\r\n \"throughputInBytes\": -1,\r\n \"throughputStatus\": \"Grey\",\r\n \"marsCommunicationStatus\": \"1\",\r\n \"marsRegistrationStatus\": \"1\"\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"A7C02967-0032-354D-92F582159960DCA9\",\r\n \"ipAddress\": \"10.150.103.112\",\r\n \"name\": \"prgoyal-vc\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.36.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:09:36Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"retentionVolumes\": [\r\n {\r\n \"volumeName\": \"E\",\r\n \"capacityInBytes\": 10734268416,\r\n \"freeSpaceInBytes\": 10688806912,\r\n \"thresholdPercentage\": null\r\n }\r\n ],\r\n \"dataStores\": [],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [],\r\n \"diskCount\": 0,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"marsAgentVersion\": \"2.0.9188.0\",\r\n \"marsAgentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.36.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9188.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n },\r\n {\r\n \"id\": \"C8C9CA35-DBBC-7443-B12483DF8C635802\",\r\n \"ipAddress\": \"10.150.99.208\",\r\n \"name\": \"prgoyal-cs\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:09:22Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"retentionVolumes\": [\r\n {\r\n \"volumeName\": \"E\",\r\n \"capacityInBytes\": 42946523136,\r\n \"freeSpaceInBytes\": 42851418112,\r\n \"thresholdPercentage\": null\r\n }\r\n ],\r\n \"dataStores\": [],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"821\",\r\n \"summaryMessage\": \"Master Target server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Master Target server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6642422Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n }\r\n ],\r\n \"diskCount\": 0,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"marsAgentVersion\": \"2.0.9165.0\",\r\n \"marsAgentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.32.0.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9165.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [\r\n {\r\n \"accountId\": \"1\",\r\n \"accountName\": \"adminpass\"\r\n },\r\n {\r\n \"accountId\": \"2\",\r\n \"accountName\": \"rootpass\"\r\n },\r\n {\r\n \"accountId\": \"3\",\r\n \"accountName\": \"vcenter\"\r\n },\r\n {\r\n \"accountId\": \"4\",\r\n \"accountName\": \"dotadmin\"\r\n }\r\n ],\r\n \"replicationPairCount\": \"7\",\r\n \"processServerCount\": \"2\",\r\n \"agentCount\": \"4\",\r\n \"protectedServers\": \"4\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 7515660288,\r\n \"availableMemoryInBytes\": 2765011420,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 107005079552,\r\n \"availableSpaceInBytes\": 59389935957,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.103.112\",\r\n \"agentVersion\": \"9.36.0.0\",\r\n \"hostName\": \"prgoyal-vc\",\r\n \"lastHeartbeat\": \"2020-11-09T17:09:52.3021092Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"sslCertExpiryDate\": \"2023-06-07T11:07:31Z\",\r\n \"sslCertExpiryRemainingDays\": 865,\r\n \"psTemplateVersion\": \"202008.06.00\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.36.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"821\",\r\n \"summaryMessage\": \"Master Target server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Master Target server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6642422Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n },\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"818\",\r\n \"summaryMessage\": \"Process server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Process Server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6031639Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n },\r\n {\r\n \"errorSource\": \"FabricHealthErrorOnPrimary\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"FabricInfrastructure\",\r\n \"errorCode\": \"813\",\r\n \"summaryMessage\": \"Recovery Services Provider heartbeat is missing\",\r\n \"errorMessage\": \"The Configuration server prgoyal-vc isn't connected.\",\r\n \"possibleCauses\": \"Required services may not be running on the Configuration server prgoyal-vc.\",\r\n \"recommendedAction\": \"\\n Ensure that:\\n 1. The Microsoft Azure Site Recovery Provider service is running.\\n 2. The server can connect to the Internet.\\n 3. The proxy settings used to connect to Azure Site Recovery are correct.\\n 4. The Provider version running on the server is up-to-date. Click Download Provider to obtain the latest version\\n 5. The certificate used to connect from Azure to the Configuration server is valid.\\n \",\r\n \"creationTimeUtc\": \"2020-11-09T10:10:41.3590824Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"H2ASite1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite1\",\r\n \"properties\": {\r\n \"friendlyName\": \"H2ASite1\",\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\": \"d25008a9-fc90-52ea-ba9a-04d4801bb29b\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"7587b389700f77dc3e15457c50c38930256051c1bc157f2c3b28264e721ac3c5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/7587b389700f77dc3e15457c50c38930256051c1bc157f2c3b28264e721ac3c5\",\r\n \"properties\": {\r\n \"friendlyName\": \"WIN-MVMTL40CT2K\",\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\": \"e2e6c967-95e7-4170-b3e0-b5f3d0d43421\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"WIN-MVMTL40CT2K\",\r\n \"id\": \"B2A95752-4892-7C4E-9CF9875071753F8C\",\r\n \"ipAddress\": \"10.150.208.16\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.39.0.0\",\r\n \"lastHeartbeat\": \"2021-01-18T12:03:39Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.39.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.39.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"B2A95752-4892-7C4E-9CF9875071753F8C\",\r\n \"machineCount\": \"0\",\r\n \"replicationPairCount\": \"0\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"66%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 20266405888,\r\n \"availableMemoryInBytes\": 17222391724,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 85372956672,\r\n \"availableSpaceInBytes\": 62634597717,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2024-01-18T19:36:14Z\",\r\n \"sslCertExpiryRemainingDays\": 1091,\r\n \"osVersion\": null,\r\n \"healthErrors\": [],\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.39.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"health\": \"Normal\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2021-01-18T12:02:22Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 0,\r\n \"throughputInBytes\": 0,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": \"1\",\r\n \"marsRegistrationStatus\": \"1\"\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"B2A95752-4892-7C4E-9CF9875071753F8C\",\r\n \"ipAddress\": \"10.150.208.16\",\r\n \"name\": \"WIN-MVMTL40CT2K\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.39.0.0\",\r\n \"lastHeartbeat\": \"2021-01-18T12:02:29Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"retentionVolumes\": [],\r\n \"dataStores\": [],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [],\r\n \"diskCount\": 0,\r\n \"osVersion\": \"Microsoft Windows Server 2016 Standard\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"marsAgentVersion\": \"2.0.9196.0\",\r\n \"marsAgentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.39.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9196.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [],\r\n \"replicationPairCount\": \"0\",\r\n \"processServerCount\": \"1\",\r\n \"agentCount\": \"0\",\r\n \"protectedServers\": \"0\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"66%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 20266405888,\r\n \"availableMemoryInBytes\": 17222391724,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 85372956672,\r\n \"availableSpaceInBytes\": 62634597717,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.208.16\",\r\n \"agentVersion\": \"9.39.0.0\",\r\n \"hostName\": \"WIN-MVMTL40CT2K\",\r\n \"lastHeartbeat\": \"2021-01-18T12:03:52.5691514Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"sslCertExpiryDate\": \"2024-01-18T19:36:12Z\",\r\n \"sslCertExpiryRemainingDays\": 1091,\r\n \"psTemplateVersion\": \"202011.14.00\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.39.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"FabricHealthErrorOnPrimary\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"FabricInfrastructure\",\r\n \"errorCode\": \"813\",\r\n \"summaryMessage\": \"Recovery Services Provider heartbeat is missing\",\r\n \"errorMessage\": \"The Configuration server WIN-MVMTL40CT2K isn't connected.\",\r\n \"possibleCauses\": \"Required services may not be running on the Configuration server WIN-MVMTL40CT2K.\",\r\n \"recommendedAction\": \"\\n Ensure that:\\n 1. The Microsoft Azure Site Recovery Provider service is running.\\n 2. The server can connect to the Internet.\\n 3. The proxy settings used to connect to Azure Site Recovery are correct.\\n 4. The Provider version running on the server is up-to-date. Click Download Provider to obtain the latest version\\n 5. The certificate used to connect from Azure to the Configuration server is valid.\\n \",\r\n \"creationTimeUtc\": \"2021-01-20T05:38:27.7889548Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"e2e6c967-95e7-4170-b3e0-b5f3d0d43421\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGU/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd0c76e9-22a8-4606-ab90-4e48ecc96dc9" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338042034)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942842034)\\/\",\"ClientRequestId\":\"be2c001a-e28d-48ff-af19-1a394ab54bf3-2021-01-22 18:54:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"++3k/cxaTzbQN8Hcar/5vFzhIVtFLdYX8mniNnz6CKc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "bd0c76e9-22a8-4606-ab90-4e48ecc96dc9 1/22/2021 6:54:02 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "bd0c76e9-22a8-4606-ab90-4e48ecc96dc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "c2b6101a-b2da-4e47-8497-19f65492cb79" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185402Z:c2b6101a-b2da-4e47-8497-19f65492cb79" + ], + "Date": [ + "Fri, 22 Jan 2021 18:54:01 GMT" + ], + "Content-Length": [ + "586" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"H2ASite\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite\",\r\n \"properties\": {\r\n \"friendlyName\": \"H2ASite\",\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\": \"1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "103e673c-285a-417f-aba7-09eb7f78f2c6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338042390)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942842390)\\/\",\"ClientRequestId\":\"afbf4947-0135-4657-a079-cbb1e5432aba-2021-01-22 18:54:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6vu+OGbUhh3VruiVEcVX1UwAmlS1xBHWgl6RmjcH4do=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "103e673c-285a-417f-aba7-09eb7f78f2c6 1/22/2021 6:54:02 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "103e673c-285a-417f-aba7-09eb7f78f2c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "828fd7f1-8d2a-49a7-aeae-7d95e1397cd7" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185402Z:828fd7f1-8d2a-49a7-aeae-7d95e1397cd7" + ], + "Date": [ + "Fri, 22 Jan 2021 18:54:01 GMT" + ], + "Content-Length": [ + "601" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"name\": \"cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"H2ASite\",\r\n \"friendlyName\": \"H2ASite\",\r\n \"fabricType\": \"HyperVSite\",\r\n \"protectedItemCount\": 5,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectionContainerMappings?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "103e673c-285a-417f-aba7-09eb7f78f2c6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338042734)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942842734)\\/\",\"ClientRequestId\":\"7c40c17d-0fff-444b-8e06-f07383cdf936-2021-01-22 18:54:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9zcPGoBjhnF5EJYnQ7XdRmeCXGVE9Don2FzQybK93aw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "103e673c-285a-417f-aba7-09eb7f78f2c6 1/22/2021 6:54:02 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "103e673c-285a-417f-aba7-09eb7f78f2c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "1b5d8905-99cb-41ba-8b97-e328b16492a2" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185403Z:1b5d8905-99cb-41ba-8b97-e328b16492a2" + ], + "Date": [ + "Fri, 22 Jan 2021 18:54:02 GMT" + ], + "Content-Length": [ + "1064" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectionContainerMappings/dcd9a07f-69a5-46f3-bc8e-f2db6b8e9c3e\",\r\n \"name\": \"dcd9a07f-69a5-46f3-bc8e-f2db6b8e9c3e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"sourceFabricFriendlyName\": \"H2ASite\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"b2apolicy\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25Qb2xpY2llcz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "103e673c-285a-417f-aba7-09eb7f78f2c6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338043113)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942843113)\\/\",\"ClientRequestId\":\"cdbf653c-0875-4eea-8a06-0c40f60b3886-2021-01-22 18:54:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"k6j2eSk36eSLdL9zY5isRDeMmOwhloPkpyatzOoCXgw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "103e673c-285a-417f-aba7-09eb7f78f2c6 1/22/2021 6:54:03 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "103e673c-285a-417f-aba7-09eb7f78f2c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "7cdb5cd3-6fab-4a67-b4a3-cff836799954" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185403Z:7cdb5cd3-6fab-4a67-b4a3-cff836799954" + ], + "Date": [ + "Fri, 22 Jan 2021 18:54:02 GMT" + ], + "Content-Length": [ + "3769" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/policy1\",\r\n \"name\": \"policy1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"policy1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/v2apolicy-failback\",\r\n \"name\": \"v2apolicy-failback\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"v2apolicy-failback\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMage\",\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/testvmm\",\r\n \"name\": \"testvmm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"testvmm\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplica2012R2\",\r\n \"replicationFrequencyInSeconds\": 30,\r\n \"recoveryPoints\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"compression\": \"Enabled\",\r\n \"initialReplicationMethod\": \"OverNetwork\",\r\n \"offlineReplicationImportPath\": \"\",\r\n \"offlineReplicationExportPath\": \"\",\r\n \"replicationPort\": 8083,\r\n \"allowedAuthenticationType\": 2,\r\n \"replicaDeletionOption\": \"None\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/policy1-failback\",\r\n \"name\": \"policy1-failback\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"policy1-failback\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMage\",\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"name\": \"b2apolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"b2apolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy1\",\r\n \"name\": \"b2apolicy1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"b2apolicy1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 4,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 2,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/v2apolicy\",\r\n \"name\": \"v2apolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"v2apolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25Qb2xpY2llcy9iMmFwb2xpY3k/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99e4fef3-3b59-4005-8342-b33a989aa897" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338043542)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942843542)\\/\",\"ClientRequestId\":\"6649483a-de83-4df5-9990-de4e12541725-2021-01-22 18:54:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ibSv4Ie85Bea5Xxucu7qQoENB+X+cbCsG0Yxt5k1lFI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "99e4fef3-3b59-4005-8342-b33a989aa897 1/22/2021 6:54:03 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "99e4fef3-3b59-4005-8342-b33a989aa897" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "96d5e30f-d4bb-4180-87c3-5925f22dbef4" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185403Z:96d5e30f-d4bb-4180-87c3-5925f22dbef4" + ], + "Date": [ + "Fri, 22 Jan 2021 18:54:02 GMT" + ], + "Content-Length": [ + "522" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"name\": \"b2apolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"b2apolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8864d26-e087-45d5-911a-5f8443be9bad" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338043859)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942843859)\\/\",\"ClientRequestId\":\"311a3efc-6b35-4496-a9ff-c0901d84a6dc-2021-01-22 18:54:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"As9CP1ttU2keusWr5r7F/n2s6T86Lm7EwLjLal6fBjI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.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": [ + "b8864d26-e087-45d5-911a-5f8443be9bad 1/22/2021 6:54:04 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b8864d26-e087-45d5-911a-5f8443be9bad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "557b73bf-1ba1-4e8d-9d45-2e5c7c290ded" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185404Z:557b73bf-1ba1-4e8d-9d45-2e5c7c290ded" + ], + "Date": [ + "Fri, 22 Jan 2021 18:54:04 GMT" + ], + "Content-Length": [ + "36095" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"name\": \"4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Gen1-2012\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"protectionState\": \"UnplannedFailoverCommitted\",\r\n \"protectionStateDescription\": \"Failover committed\",\r\n \"activeLocation\": \"Recovery\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"CompleteMigration\",\r\n \"DisableProtection\",\r\n \"Failback\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Normal\",\r\n \"healthErrors\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"lastSuccessfulFailoverTime\": \"2021-01-12T20:40:37.5574566Z\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/4ee04dca-9879-48ed-81e7-24e5275971e3/recoveryPoints/4221092d-d8a7-4d16-8a7b-654ad132e468\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"80ba7a95-81b4-4548-9cb7-2092a88abc62\",\r\n \"diskId\": \"4EE04DCA-9879-48ED-81E7-24E5275971E3_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-Gen1-2012_97E88620-FC7C-4995-A0CE-C312B10B2270\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-Gen1-2012\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-12T20:42:11Z\",\r\n \"rpoInSeconds\": 1756,\r\n \"lastRpoCalculatedTime\": \"2021-01-12T21:11:28.3724871Z\",\r\n \"vmId\": \"4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"vmProtectionState\": \"UnplannedFailoverCommitted\",\r\n \"vmProtectionStateDescription\": \"Failover committed\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"21\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OjRFRTA0RENBLTk4NzktNDhFRC04MUU3LTI0RTUyNzU5NzFFM1w1REJERURBNC0xRDFDLTQ2NDYtQTUyQy1COUM5MjI0NTY1ODM=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n },\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OjRFRTA0RENBLTk4NzktNDhFRC04MUU3LTI0RTUyNzU5NzFFM1wxQUZDMTg5Mi01NTZELTRCRDctOTFDRi0yMDkwMDUxQTFBNEE=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OjRFRTA0RENBLTk4NzktNDhFRC04MUU3LTI0RTUyNzU5NzFFM1wxQUZDMTg5Mi01NTZELTRCRDctOTFDRi0yMDkwMDUxQTFBNEE=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Compute/proximityPlacementGroups/westus2PPG\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-12T20:42:11.4168867Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"dcdfca60-555d-4147-a6a3-3ede2a894902\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"name\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Gen2-New\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-Gen2-New'.\",\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-01-22T14:42:13.0438795Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"8d9a7efe-870a-4710-9b49-6eb4f91b2a36\",\r\n \"diskId\": \"A91B0AEB-E364-487B-9237-8491C595BB05_12549549-4859-48A4-9BD2-8B6A81972F3C_0_0\",\r\n \"vhdName\": \"A020-Gen2-New\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-Gen2-New\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:47:38Z\",\r\n \"rpoInSeconds\": 43,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:48:22.4685927Z\",\r\n \"vmId\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"23\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkE5MUIwQUVCLUUzNjQtNDg3Qi05MjM3LTg0OTFDNTk1QkIwNVw5RkZENUQ5RS01MUVELTQ5NUEtOUU4Qy05NTQ3QUIwMENFQkE=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n },\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkE5MUIwQUVCLUUzNjQtNDg3Qi05MjM3LTg0OTFDNTk1QkIwNVxDMzk1QTM2NS1GRjdELTRDM0EtQUZCOC1CRDhBQzZEQkZGNjI=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"VSwitch_VLan\",\r\n \"vMNetworkName\": \"VSwitch_VLan\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkE5MUIwQUVCLUUzNjQtNDg3Qi05MjM3LTg0OTFDNTk1QkIwNVxDMzk1QTM2NS1GRjdELTRDM0EtQUZCOC1CRDhBQzZEQkZGNjI=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:47:38.9089261Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"e1b25977-c3d3-4455-b00e-d5a07a864e7b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"name\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum2\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-VJ-Dum2'.\",\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-01-22T18:53:03.9618773Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"49b0a5e7-04a0-42f8-962b-3ef038a44552\",\r\n \"diskId\": \"D7F72E6C-7E3B-4995-9AB1-DC8C93FE1011_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-VJ-Dum2\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-VJ-Dum2\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Storage/storageAccounts/hrasa\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:49:45Z\",\r\n \"rpoInSeconds\": 4,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:49:50.0485027Z\",\r\n \"vmId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"1\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"false\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:49:45.1839854Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"cd45c445-1aa0-4a2a-b0b4-6a7af6817d6d\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"name\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum1\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-VJ-Dum1'.\",\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-01-22T18:52:05.0594102Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"b9319153-00b3-45c1-9fa8-7eb7e794d4d3\",\r\n \"diskId\": \"DBA6F9F1-C3A6-4681-A608-0DC0A7C6554A_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-VJ-Dum1\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-VJ-Dum1\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:47:59Z\",\r\n \"rpoInSeconds\": 25,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:53:25.0520633Z\",\r\n \"vmId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/DefaultResourceGroup-WUS2\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:52:59.7835159Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"724e835d-c8a6-46db-b1b8-68302b83c045\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"name\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a020-dum\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Critical\",\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 'a020-dum'.\",\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-01-22T14:42:13.2298305Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnPrimary\",\r\n \"errorType\": \"25\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"68525\",\r\n \"summaryMessage\": \"Delay in App consistent Checkpoint.\",\r\n \"errorMessage\": \"The time duration since the last successful application consistent checkpoint has exceeded the warning limit for the virtual machine.\",\r\n \"possibleCauses\": \"\\n 1. VSS is not enabled or in an unhealthy state in the virtual machine.\\n 2. Unsupported configuration inside the VM like presence of dynamic disk or iSCSI disk.\\n \",\r\n \"recommendedAction\": \"\\n 1. Ensure that latest integration services are installed on the virtual machine.\\n 2. VSS/Backup integration services are enabled for the virtual machine.\\n 3. Check the health state of VSS writers in the virtual machine.\\n \",\r\n \"creationTimeUtc\": \"2020-12-17T03:38:42.2619405Z\",\r\n \"recoveryProviderErrorMessage\": \"Time duration since the last successful application consistent checkpoint has exceeded the warning limit for the virtual machine 'a020-dum'. (Virtual machine ID F42F6665-5B86-4EF4-BB55-8E7B9C545F9E)\",\r\n \"entityId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"errorId\": \"2:25\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnReplica\",\r\n \"errorType\": \"301\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"70171\",\r\n \"summaryMessage\": \"Recent app-consistent recovery point not available\",\r\n \"errorMessage\": \"No application consistent recovery point available for the VM in the last 240 minutes.\",\r\n \"possibleCauses\": \"\\n 1. Replication is progressing slowly or is not progressing as expected.\\n 2. The target storage account is not provisioned with sufficient throughput or IOPs to handle the volume of replication data.\\n \",\r\n \"recommendedAction\": \"\\n Ensure that:\\n 1. Application-consistent snapshot frequency is configured to a valid value in the replication policy.\\n 2. There is sufficient network bandwidth available between the HyperV server and Azure.\\n 3. Look for any associated events in the site recovery events table and resolve them if any.\\n \",\r\n \"creationTimeUtc\": \"2020-12-17T17:24:49.7901306Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"errorId\": \"3:301\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"c164f745-d66c-4fa5-ae47-830c0d97b262\",\r\n \"diskId\": \"F42F6665-5B86-4EF4-BB55-8E7B9C545F9E_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"a020-dum\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"a020-dum\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:47:39Z\",\r\n \"rpoInSeconds\": 46,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:48:25.7939984Z\",\r\n \"vmId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkY0MkY2NjY1LTVCODYtNEVGNC1CQjU1LThFN0I5QzU0NUY5RVxFQzlFQ0I1NC1EMEZBLTRCNEQtQThFNS0xNDM1QjgwOTAxRDc=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkY0MkY2NjY1LTVCODYtNEVGNC1CQjU1LThFN0I5QzU0NUY5RVxFQzlFQ0I1NC1EMEZBLTRCNEQtQThFNS0xNDM1QjgwOTAxRDc=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg\",\r\n \"recoveryAvailabilitySetId\": null,\r\n \"targetAvailabilityZone\": null,\r\n \"targetProximityPlacementGroupId\": null,\r\n \"useManagedDisks\": \"false\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:47:39.3462749Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"ea753b00-9ede-4bea-b302-459915e5f69e\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0e18561-73b5-4049-96bd-7e915a2b6c7e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338047548)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942847548)\\/\",\"ClientRequestId\":\"2a50296e-e06f-4d53-94b9-836854d7404f-2021-01-22 18:54:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NpOSqZO7ghRxKPNpUcOtnKFAmsC7GWgo9WGGaysdb2k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "a0e18561-73b5-4049-96bd-7e915a2b6c7e 1/22/2021 6:54:07 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "a0e18561-73b5-4049-96bd-7e915a2b6c7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "86541559-8a9e-46fc-a5a1-9cb8d030b6b5" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185407Z:86541559-8a9e-46fc-a5a1-9cb8d030b6b5" + ], + "Date": [ + "Fri, 22 Jan 2021 18:54:07 GMT" + ], + "Content-Length": [ + "36096" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"name\": \"4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Gen1-2012\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"protectionState\": \"UnplannedFailoverCommitted\",\r\n \"protectionStateDescription\": \"Failover committed\",\r\n \"activeLocation\": \"Recovery\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"CompleteMigration\",\r\n \"DisableProtection\",\r\n \"Failback\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Normal\",\r\n \"healthErrors\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"lastSuccessfulFailoverTime\": \"2021-01-12T20:40:37.5574566Z\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/4ee04dca-9879-48ed-81e7-24e5275971e3/recoveryPoints/4221092d-d8a7-4d16-8a7b-654ad132e468\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"80ba7a95-81b4-4548-9cb7-2092a88abc62\",\r\n \"diskId\": \"4EE04DCA-9879-48ED-81E7-24E5275971E3_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-Gen1-2012_97E88620-FC7C-4995-A0CE-C312B10B2270\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-Gen1-2012\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-12T20:42:11Z\",\r\n \"rpoInSeconds\": 1756,\r\n \"lastRpoCalculatedTime\": \"2021-01-12T21:11:28.3724871Z\",\r\n \"vmId\": \"4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"vmProtectionState\": \"UnplannedFailoverCommitted\",\r\n \"vmProtectionStateDescription\": \"Failover committed\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"21\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OjRFRTA0RENBLTk4NzktNDhFRC04MUU3LTI0RTUyNzU5NzFFM1w1REJERURBNC0xRDFDLTQ2NDYtQTUyQy1COUM5MjI0NTY1ODM=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n },\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OjRFRTA0RENBLTk4NzktNDhFRC04MUU3LTI0RTUyNzU5NzFFM1wxQUZDMTg5Mi01NTZELTRCRDctOTFDRi0yMDkwMDUxQTFBNEE=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OjRFRTA0RENBLTk4NzktNDhFRC04MUU3LTI0RTUyNzU5NzFFM1wxQUZDMTg5Mi01NTZELTRCRDctOTFDRi0yMDkwMDUxQTFBNEE=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Compute/proximityPlacementGroups/westus2PPG\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-12T20:42:11.4168867Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"dcdfca60-555d-4147-a6a3-3ede2a894902\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"name\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Gen2-New\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-Gen2-New'.\",\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-01-22T14:42:13.0438795Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"8d9a7efe-870a-4710-9b49-6eb4f91b2a36\",\r\n \"diskId\": \"A91B0AEB-E364-487B-9237-8491C595BB05_12549549-4859-48A4-9BD2-8B6A81972F3C_0_0\",\r\n \"vhdName\": \"A020-Gen2-New\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-Gen2-New\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:47:38Z\",\r\n \"rpoInSeconds\": 43,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:48:22.4685927Z\",\r\n \"vmId\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"23\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkE5MUIwQUVCLUUzNjQtNDg3Qi05MjM3LTg0OTFDNTk1QkIwNVw5RkZENUQ5RS01MUVELTQ5NUEtOUU4Qy05NTQ3QUIwMENFQkE=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n },\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkE5MUIwQUVCLUUzNjQtNDg3Qi05MjM3LTg0OTFDNTk1QkIwNVxDMzk1QTM2NS1GRjdELTRDM0EtQUZCOC1CRDhBQzZEQkZGNjI=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"VSwitch_VLan\",\r\n \"vMNetworkName\": \"VSwitch_VLan\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkE5MUIwQUVCLUUzNjQtNDg3Qi05MjM3LTg0OTFDNTk1QkIwNVxDMzk1QTM2NS1GRjdELTRDM0EtQUZCOC1CRDhBQzZEQkZGNjI=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:47:38.9089261Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"e1b25977-c3d3-4455-b00e-d5a07a864e7b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"name\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum2\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-VJ-Dum2'.\",\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-01-22T18:53:03.9618773Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"49b0a5e7-04a0-42f8-962b-3ef038a44552\",\r\n \"diskId\": \"D7F72E6C-7E3B-4995-9AB1-DC8C93FE1011_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-VJ-Dum2\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-VJ-Dum2\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Storage/storageAccounts/hrasa\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:49:45Z\",\r\n \"rpoInSeconds\": 4,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:49:50.0485027Z\",\r\n \"vmId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"2\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"false\",\r\n \"licenseType\": \"WindowsServer\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:49:45.1839854Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"cd45c445-1aa0-4a2a-b0b4-6a7af6817d6d\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"name\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum1\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-VJ-Dum1'.\",\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-01-22T18:52:05.0594102Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"b9319153-00b3-45c1-9fa8-7eb7e794d4d3\",\r\n \"diskId\": \"DBA6F9F1-C3A6-4681-A608-0DC0A7C6554A_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-VJ-Dum1\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-VJ-Dum1\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:47:59Z\",\r\n \"rpoInSeconds\": 25,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:53:25.0520633Z\",\r\n \"vmId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/DefaultResourceGroup-WUS2\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:52:59.7835159Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"724e835d-c8a6-46db-b1b8-68302b83c045\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"name\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a020-dum\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Critical\",\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 'a020-dum'.\",\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-01-22T14:42:13.2298305Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnPrimary\",\r\n \"errorType\": \"25\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"68525\",\r\n \"summaryMessage\": \"Delay in App consistent Checkpoint.\",\r\n \"errorMessage\": \"The time duration since the last successful application consistent checkpoint has exceeded the warning limit for the virtual machine.\",\r\n \"possibleCauses\": \"\\n 1. VSS is not enabled or in an unhealthy state in the virtual machine.\\n 2. Unsupported configuration inside the VM like presence of dynamic disk or iSCSI disk.\\n \",\r\n \"recommendedAction\": \"\\n 1. Ensure that latest integration services are installed on the virtual machine.\\n 2. VSS/Backup integration services are enabled for the virtual machine.\\n 3. Check the health state of VSS writers in the virtual machine.\\n \",\r\n \"creationTimeUtc\": \"2020-12-17T03:38:42.2619405Z\",\r\n \"recoveryProviderErrorMessage\": \"Time duration since the last successful application consistent checkpoint has exceeded the warning limit for the virtual machine 'a020-dum'. (Virtual machine ID F42F6665-5B86-4EF4-BB55-8E7B9C545F9E)\",\r\n \"entityId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"errorId\": \"2:25\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnReplica\",\r\n \"errorType\": \"301\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"70171\",\r\n \"summaryMessage\": \"Recent app-consistent recovery point not available\",\r\n \"errorMessage\": \"No application consistent recovery point available for the VM in the last 240 minutes.\",\r\n \"possibleCauses\": \"\\n 1. Replication is progressing slowly or is not progressing as expected.\\n 2. The target storage account is not provisioned with sufficient throughput or IOPs to handle the volume of replication data.\\n \",\r\n \"recommendedAction\": \"\\n Ensure that:\\n 1. Application-consistent snapshot frequency is configured to a valid value in the replication policy.\\n 2. There is sufficient network bandwidth available between the HyperV server and Azure.\\n 3. Look for any associated events in the site recovery events table and resolve them if any.\\n \",\r\n \"creationTimeUtc\": \"2020-12-17T17:24:49.7901306Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"errorId\": \"3:301\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"c164f745-d66c-4fa5-ae47-830c0d97b262\",\r\n \"diskId\": \"F42F6665-5B86-4EF4-BB55-8E7B9C545F9E_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"a020-dum\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"a020-dum\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:47:39Z\",\r\n \"rpoInSeconds\": 46,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:48:25.7939984Z\",\r\n \"vmId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkY0MkY2NjY1LTVCODYtNEVGNC1CQjU1LThFN0I5QzU0NUY5RVxFQzlFQ0I1NC1EMEZBLTRCNEQtQThFNS0xNDM1QjgwOTAxRDc=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkY0MkY2NjY1LTVCODYtNEVGNC1CQjU1LThFN0I5QzU0NUY5RVxFQzlFQ0I1NC1EMEZBLTRCNEQtQThFNS0xNDM1QjgwOTAxRDc=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg\",\r\n \"recoveryAvailabilitySetId\": null,\r\n \"targetAvailabilityZone\": null,\r\n \"targetProximityPlacementGroupId\": null,\r\n \"useManagedDisks\": \"false\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:47:39.3462749Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"ea753b00-9ede-4bea-b302-459915e5f69e\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9kN2Y3MmU2Yy03ZTNiLTQ5OTUtOWFiMS1kYzhjOTNmZTEwMTE/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8864d26-e087-45d5-911a-5f8443be9bad" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338044300)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942844300)\\/\",\"ClientRequestId\":\"7db16ceb-b58e-4831-b40f-0b714b392c48-2021-01-22 18:54:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FEU78Q9YNSlYe3u2QvVoQQYqN4PguWMG9TDIYqjQ0LQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "b8864d26-e087-45d5-911a-5f8443be9bad 1/22/2021 6:54:04 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b8864d26-e087-45d5-911a-5f8443be9bad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "c060bc4d-7b39-401f-9996-238974aabb05" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185404Z:c060bc4d-7b39-401f-9996-238974aabb05" + ], + "Date": [ + "Fri, 22 Jan 2021 18:54:04 GMT" + ], + "Content-Length": [ + "6288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"name\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum2\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-VJ-Dum2'.\",\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-01-22T18:53:03.9618773Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"49b0a5e7-04a0-42f8-962b-3ef038a44552\",\r\n \"diskId\": \"D7F72E6C-7E3B-4995-9AB1-DC8C93FE1011_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-VJ-Dum2\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-VJ-Dum2\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Storage/storageAccounts/hrasa\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:49:45Z\",\r\n \"rpoInSeconds\": 4,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:49:50.0485027Z\",\r\n \"vmId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"1\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"false\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:49:45.1839854Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"cd45c445-1aa0-4a2a-b0b4-6a7af6817d6d\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9kN2Y3MmU2Yy03ZTNiLTQ5OTUtOWFiMS1kYzhjOTNmZTEwMTE/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "582088ff-178b-4f31-bdcb-285f88e8d268" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338044747)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942844747)\\/\",\"ClientRequestId\":\"604ea2c1-ddaf-40d1-bb3d-4067dec3600b-2021-01-22 18:54:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1b8VzQUb97xXXYFA6QJUDBWBsyR94osis1B8DHy+oiM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "582088ff-178b-4f31-bdcb-285f88e8d268 1/22/2021 6:54:04 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "582088ff-178b-4f31-bdcb-285f88e8d268" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "fb36422f-4308-4d91-90cc-3813f668517d" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185405Z:fb36422f-4308-4d91-90cc-3813f668517d" + ], + "Date": [ + "Fri, 22 Jan 2021 18:54:04 GMT" + ], + "Content-Length": [ + "6288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"name\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum2\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-VJ-Dum2'.\",\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-01-22T18:53:03.9618773Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"49b0a5e7-04a0-42f8-962b-3ef038a44552\",\r\n \"diskId\": \"D7F72E6C-7E3B-4995-9AB1-DC8C93FE1011_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-VJ-Dum2\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-VJ-Dum2\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Storage/storageAccounts/hrasa\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:49:45Z\",\r\n \"rpoInSeconds\": 4,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:49:50.0485027Z\",\r\n \"vmId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"1\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"false\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:49:45.1839854Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"cd45c445-1aa0-4a2a-b0b4-6a7af6817d6d\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9kN2Y3MmU2Yy03ZTNiLTQ5OTUtOWFiMS1kYzhjOTNmZTEwMTE/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a0e18561-73b5-4049-96bd-7e915a2b6c7e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338047959)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942847959)\\/\",\"ClientRequestId\":\"a334e2b1-6a6c-4152-915e-1eb19089489f-2021-01-22 18:54:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EUW2K87IJg7X5gGKwrSgXiPpsLKPQXzRrZEljJ1Wky0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "a0e18561-73b5-4049-96bd-7e915a2b6c7e 1/22/2021 6:54:08 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "a0e18561-73b5-4049-96bd-7e915a2b6c7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "3849450d-eddc-48e5-9f2b-0d76d67e6899" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185408Z:3849450d-eddc-48e5-9f2b-0d76d67e6899" + ], + "Date": [ + "Fri, 22 Jan 2021 18:54:07 GMT" + ], + "Content-Length": [ + "6289" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"name\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum2\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-VJ-Dum2'.\",\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-01-22T18:54:07.9983471Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"49b0a5e7-04a0-42f8-962b-3ef038a44552\",\r\n \"diskId\": \"D7F72E6C-7E3B-4995-9AB1-DC8C93FE1011_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-VJ-Dum2\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-VJ-Dum2\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Storage/storageAccounts/hrasa\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:49:45Z\",\r\n \"rpoInSeconds\": 4,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:49:50.0485027Z\",\r\n \"vmId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"2\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"false\",\r\n \"licenseType\": \"WindowsServer\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:49:45.1839854Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"cd45c445-1aa0-4a2a-b0b4-6a7af6817d6d\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9kN2Y3MmU2Yy03ZTNiLTQ5OTUtOWFiMS1kYzhjOTNmZTEwMTE/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryAzureVMName\": \"A020-VJ-Dum2\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedTfoAzureNetworkId\": \"\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": []\r\n }\r\n ],\r\n \"licenseType\": \"WindowsServer\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryAzureV2ResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg\",\r\n \"useManagedDisks\": \"false\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"targetAvailabilityZone\": \"2\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "582088ff-178b-4f31-bdcb-285f88e8d268" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338045140)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942845140)\\/\",\"ClientRequestId\":\"dd01d352-d414-4404-9517-7ffdc904e445-2021-01-22 18:54:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rUOK5nqXIw1/UTN/Vm3Jf/PuGPmKXci6cPboMYjyokk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1337" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011/operationresults/0a70b045-4b0e-4816-a67b-236f7dac4633?api-version=2018-07-10" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/0a70b045-4b0e-4816-a67b-236f7dac4633", + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/0a70b045-4b0e-4816-a67b-236f7dac4633" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationOperationStatus/0a70b045-4b0e-4816-a67b-236f7dac4633?api-version=2018-07-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "582088ff-178b-4f31-bdcb-285f88e8d268" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "66bd19d2-59ac-4edd-b3c6-1a76b99989c8" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185406Z:66bd19d2-59ac-4edd-b3c6-1a76b99989c8" + ], + "Date": [ + "Fri, 22 Jan 2021 18:54:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/0a70b045-4b0e-4816-a67b-236f7dac4633?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25Kb2JzLzBhNzBiMDQ1LTRiMGUtNDgxNi1hNjdiLTIzNmY3ZGFjNDYzMz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "582088ff-178b-4f31-bdcb-285f88e8d268" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338047185)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942847185)\\/\",\"ClientRequestId\":\"aa30fc34-3dfe-4470-b336-a3d768cb6a81-2021-01-22 18:54:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pYzs61uxWWp0sLFpzZFpBBmqASx86Y/IGLjGqMfsGaQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/0a70b045-4b0e-4816-a67b-236f7dac4633" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "582088ff-178b-4f31-bdcb-285f88e8d268" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "caed7e44-bf26-4f20-92a9-1c37aa33f96e" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185407Z:caed7e44-bf26-4f20-92a9-1c37aa33f96e" + ], + "Date": [ + "Fri, 22 Jan 2021 18:54:06 GMT" + ], + "Content-Length": [ + "1848" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/0a70b045-4b0e-4816-a67b-236f7dac4633\",\r\n \"name\": \"0a70b045-4b0e-4816-a67b-236f7dac4633\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"582088ff-178b-4f31-bdcb-285f88e8d268 ActivityId: 66bd19d2-59ac-4edd-b3c6-1a76b99989c8\",\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\": \"5e1533de-40fa-4fb8-9193-9cea43c64aa1\",\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-01-22T18:54:06.3377463Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"targetObjectName\": \"A020-VJ-Dum2\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"primaryVmName\": \"A020-VJ-Dum2\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"A020-VJ-Dum2\",\r\n \"protectionProfileId\": \"3e031e8e-87c4-5c1d-8ca2-19e3483da958\",\r\n \"primaryCloudId\": \"cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"primaryCloudName\": \"H2ASite\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"primaryVmmName\": \"H2ASite\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c" + } +} \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/TestUpdateRPIWithPPG.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/TestUpdateRPIWithPPG.json new file mode 100644 index 000000000000..eb62bfb52940 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrB2ATests/TestUpdateRPIWithPPG.json @@ -0,0 +1,993 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73d9124e-2121-4c50-8fc7-3f89c27825ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.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-ms-original-request-ids": [ + "cb82cb3f-0673-4d29-8c16-e84d2de1b596", + "cb82cb3f-0673-4d29-8c16-e84d2de1b596", + "cb82cb3f-0673-4d29-8c16-e84d2de1b596", + "cb82cb3f-0673-4d29-8c16-e84d2de1b596" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "cb82cb3f-0673-4d29-8c16-e84d2de1b596" + ], + "x-ms-correlation-request-id": [ + "cb82cb3f-0673-4d29-8c16-e84d2de1b596" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185523Z:cb82cb3f-0673-4d29-8c16-e84d2de1b596" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Jan 2021 18:55:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "3780" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"prakwus\",\r\n \"etag\": \"W/\\\"datetime'2020-04-23T06%3A54%3A06.3298168Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakwus\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"westus2\",\r\n \"name\": \"H2ATest\",\r\n \"etag\": \"W/\\\"datetime'2021-01-22T15%3A44%3A11.2653776Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"prakccy\",\r\n \"etag\": \"W/\\\"datetime'2019-07-19T07%3A35%3A53.8406541Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakccy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"prakccysignoff-MigrateVault-k56exc39\",\r\n \"etag\": \"W/\\\"datetime'2020-01-09T14%3A40%3A47.7045371Z'\\\"\",\r\n \"tags\": {\r\n \"Migrate Project\": \"prakccysignoff\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakccysignoff-MigrateVault-k56exc39\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"name\": \"prakccysignoff5efersvault\",\r\n \"etag\": \"W/\\\"datetime'2020-01-05T09%3A46%3A08.9360831Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakccysignoff5efersvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakmigration4e6brsvault\",\r\n \"etag\": \"W/\\\"datetime'2019-11-13T11%3A06%3A09.5623251Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakmigration4e6brsvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakrcmvault\",\r\n \"etag\": \"W/\\\"datetime'2020-08-20T12%3A50%3A55.7577231Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakrcmvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"prakv2a\",\r\n \"etag\": \"W/\\\"datetime'2019-03-26T11%3A45%3A29.5678914Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/prakv2a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d625f19e-abf5-4927-9b5c-df36b2b1e870" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338123996)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942923996)\\/\",\"ClientRequestId\":\"2944376e-ea3c-4e97-825d-907996f2f8fc-2021-01-22 18:55:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"c5jhbPZ5L9zmtM5vYdENHlkRKMD7yfRfjWx1J2SIzTU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "d625f19e-abf5-4927-9b5c-df36b2b1e870 1/22/2021 6:55:25 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d625f19e-abf5-4927-9b5c-df36b2b1e870" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "9182d63a-aa29-45be-b382-31f4098477ea" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185525Z:9182d63a-aa29-45be-b382-31f4098477ea" + ], + "Date": [ + "Fri, 22 Jan 2021 18:55:24 GMT" + ], + "Content-Length": [ + "15917" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"H2ASite\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite\",\r\n \"properties\": {\r\n \"friendlyName\": \"H2ASite\",\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\": \"1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"10d8a11520fcf04c0af7379aedb1c544be28087a281f0dc7d3b9acb3b1f49b0e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/10d8a11520fcf04c0af7379aedb1c544be28087a281f0dc7d3b9acb3b1f49b0e\",\r\n \"properties\": {\r\n \"friendlyName\": \"prgoyal-vc\",\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\": \"264856f2-77e6-414b-9984-17fb4753d5f8\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"prgoyal-cs\",\r\n \"id\": \"C8C9CA35-DBBC-7443-B12483DF8C635802\",\r\n \"ipAddress\": \"10.150.99.208\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:06:21Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"mobilityServiceUpdates\": [],\r\n \"hostId\": \"C8C9CA35-DBBC-7443-B12483DF8C635802\",\r\n \"machineCount\": \"1\",\r\n \"replicationPairCount\": \"1\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 9931579392,\r\n \"availableMemoryInBytes\": 8287903003,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 107005079552,\r\n \"availableSpaceInBytes\": 87630987264,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2023-06-08T14:03:50Z\",\r\n \"sslCertExpiryRemainingDays\": 866,\r\n \"osVersion\": null,\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"818\",\r\n \"summaryMessage\": \"Process server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Process Server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6031639Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n }\r\n ],\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.32.0.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"health\": \"Warning\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2020-11-09T17:09:28Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 0,\r\n \"throughputInBytes\": 0,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": \"1\",\r\n \"marsRegistrationStatus\": \"1\"\r\n },\r\n {\r\n \"friendlyName\": \"prgoyal-vc\",\r\n \"id\": \"A7C02967-0032-354D-92F582159960DCA9\",\r\n \"ipAddress\": \"10.150.103.112\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.36.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:07:25Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.36.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.36.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"A7C02967-0032-354D-92F582159960DCA9\",\r\n \"machineCount\": \"3\",\r\n \"replicationPairCount\": \"6\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 7515660288,\r\n \"availableMemoryInBytes\": 2765011420,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 107005079552,\r\n \"availableSpaceInBytes\": 59389935957,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2023-06-07T11:07:32Z\",\r\n \"sslCertExpiryRemainingDays\": 865,\r\n \"osVersion\": null,\r\n \"healthErrors\": [],\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.36.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"health\": \"Normal\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2020-11-09T17:09:27Z\",\r\n \"throughputUploadPendingDataInBytes\": -1,\r\n \"throughputInMBps\": -1,\r\n \"throughputInBytes\": -1,\r\n \"throughputStatus\": \"Grey\",\r\n \"marsCommunicationStatus\": \"1\",\r\n \"marsRegistrationStatus\": \"1\"\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"A7C02967-0032-354D-92F582159960DCA9\",\r\n \"ipAddress\": \"10.150.103.112\",\r\n \"name\": \"prgoyal-vc\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.36.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:09:36Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"retentionVolumes\": [\r\n {\r\n \"volumeName\": \"E\",\r\n \"capacityInBytes\": 10734268416,\r\n \"freeSpaceInBytes\": 10688806912,\r\n \"thresholdPercentage\": null\r\n }\r\n ],\r\n \"dataStores\": [],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [],\r\n \"diskCount\": 0,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"marsAgentVersion\": \"2.0.9188.0\",\r\n \"marsAgentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.36.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9188.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n },\r\n {\r\n \"id\": \"C8C9CA35-DBBC-7443-B12483DF8C635802\",\r\n \"ipAddress\": \"10.150.99.208\",\r\n \"name\": \"prgoyal-cs\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"lastHeartbeat\": \"2020-11-09T17:09:22Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"retentionVolumes\": [\r\n {\r\n \"volumeName\": \"E\",\r\n \"capacityInBytes\": 42946523136,\r\n \"freeSpaceInBytes\": 42851418112,\r\n \"thresholdPercentage\": null\r\n }\r\n ],\r\n \"dataStores\": [],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"821\",\r\n \"summaryMessage\": \"Master Target server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Master Target server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6642422Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n }\r\n ],\r\n \"diskCount\": 0,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"marsAgentVersion\": \"2.0.9165.0\",\r\n \"marsAgentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.32.0.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9165.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [\r\n {\r\n \"accountId\": \"1\",\r\n \"accountName\": \"adminpass\"\r\n },\r\n {\r\n \"accountId\": \"2\",\r\n \"accountName\": \"rootpass\"\r\n },\r\n {\r\n \"accountId\": \"3\",\r\n \"accountName\": \"vcenter\"\r\n },\r\n {\r\n \"accountId\": \"4\",\r\n \"accountName\": \"dotadmin\"\r\n }\r\n ],\r\n \"replicationPairCount\": \"7\",\r\n \"processServerCount\": \"2\",\r\n \"agentCount\": \"4\",\r\n \"protectedServers\": \"4\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 7515660288,\r\n \"availableMemoryInBytes\": 2765011420,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 107005079552,\r\n \"availableSpaceInBytes\": 59389935957,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.103.112\",\r\n \"agentVersion\": \"9.36.0.0\",\r\n \"hostName\": \"prgoyal-vc\",\r\n \"lastHeartbeat\": \"2020-11-09T17:09:52.3021092Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"sslCertExpiryDate\": \"2023-06-07T11:07:31Z\",\r\n \"sslCertExpiryRemainingDays\": 865,\r\n \"psTemplateVersion\": \"202008.06.00\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.36.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"821\",\r\n \"summaryMessage\": \"Master Target server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Master Target server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6642422Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n },\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"818\",\r\n \"summaryMessage\": \"Process server version is nearing End-Of-Support.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.32.0.0) running on your Process Server will end in the next (58) days.\",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.38.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server in the next (58) days to ensure the Site Recovery functionality continues to work without issues.\",\r\n \"creationTimeUtc\": \"2020-11-09T00:15:56.6031639Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n },\r\n {\r\n \"errorSource\": \"FabricHealthErrorOnPrimary\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"FabricInfrastructure\",\r\n \"errorCode\": \"813\",\r\n \"summaryMessage\": \"Recovery Services Provider heartbeat is missing\",\r\n \"errorMessage\": \"The Configuration server prgoyal-vc isn't connected.\",\r\n \"possibleCauses\": \"Required services may not be running on the Configuration server prgoyal-vc.\",\r\n \"recommendedAction\": \"\\n Ensure that:\\n 1. The Microsoft Azure Site Recovery Provider service is running.\\n 2. The server can connect to the Internet.\\n 3. The proxy settings used to connect to Azure Site Recovery are correct.\\n 4. The Provider version running on the server is up-to-date. Click Download Provider to obtain the latest version\\n 5. The certificate used to connect from Azure to the Configuration server is valid.\\n \",\r\n \"creationTimeUtc\": \"2020-11-09T10:10:41.3590824Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"264856f2-77e6-414b-9984-17fb4753d5f8\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"H2ASite1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite1\",\r\n \"properties\": {\r\n \"friendlyName\": \"H2ASite1\",\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\": \"d25008a9-fc90-52ea-ba9a-04d4801bb29b\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"7587b389700f77dc3e15457c50c38930256051c1bc157f2c3b28264e721ac3c5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/7587b389700f77dc3e15457c50c38930256051c1bc157f2c3b28264e721ac3c5\",\r\n \"properties\": {\r\n \"friendlyName\": \"WIN-MVMTL40CT2K\",\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\": \"e2e6c967-95e7-4170-b3e0-b5f3d0d43421\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"WIN-MVMTL40CT2K\",\r\n \"id\": \"B2A95752-4892-7C4E-9CF9875071753F8C\",\r\n \"ipAddress\": \"10.150.208.16\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.39.0.0\",\r\n \"lastHeartbeat\": \"2021-01-18T12:03:39Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.39.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.39.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"B2A95752-4892-7C4E-9CF9875071753F8C\",\r\n \"machineCount\": \"0\",\r\n \"replicationPairCount\": \"0\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"66%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 20266405888,\r\n \"availableMemoryInBytes\": 17222391724,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 85372956672,\r\n \"availableSpaceInBytes\": 62634597717,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2024-01-18T19:36:14Z\",\r\n \"sslCertExpiryRemainingDays\": 1091,\r\n \"osVersion\": null,\r\n \"healthErrors\": [],\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.39.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"health\": \"Normal\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2021-01-18T12:02:22Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 0,\r\n \"throughputInBytes\": 0,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": \"1\",\r\n \"marsRegistrationStatus\": \"1\"\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"B2A95752-4892-7C4E-9CF9875071753F8C\",\r\n \"ipAddress\": \"10.150.208.16\",\r\n \"name\": \"WIN-MVMTL40CT2K\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.39.0.0\",\r\n \"lastHeartbeat\": \"2021-01-18T12:02:29Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"retentionVolumes\": [],\r\n \"dataStores\": [],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [],\r\n \"diskCount\": 0,\r\n \"osVersion\": \"Microsoft Windows Server 2016 Standard\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"marsAgentVersion\": \"2.0.9196.0\",\r\n \"marsAgentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.39.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9196.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [],\r\n \"replicationPairCount\": \"0\",\r\n \"processServerCount\": \"1\",\r\n \"agentCount\": \"0\",\r\n \"protectedServers\": \"0\",\r\n \"systemLoad\": \"0\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"66%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 20266405888,\r\n \"availableMemoryInBytes\": 17222391724,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 85372956672,\r\n \"availableSpaceInBytes\": 62634597717,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.208.16\",\r\n \"agentVersion\": \"9.39.0.0\",\r\n \"hostName\": \"WIN-MVMTL40CT2K\",\r\n \"lastHeartbeat\": \"2021-01-18T12:03:52.5691514Z\",\r\n \"versionStatus\": \"UpdateRequired\",\r\n \"sslCertExpiryDate\": \"2024-01-18T19:36:12Z\",\r\n \"sslCertExpiryRemainingDays\": 1091,\r\n \"psTemplateVersion\": \"202011.14.00\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.39.0.0\",\r\n \"expiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"FabricHealthErrorOnPrimary\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"FabricInfrastructure\",\r\n \"errorCode\": \"813\",\r\n \"summaryMessage\": \"Recovery Services Provider heartbeat is missing\",\r\n \"errorMessage\": \"The Configuration server WIN-MVMTL40CT2K isn't connected.\",\r\n \"possibleCauses\": \"Required services may not be running on the Configuration server WIN-MVMTL40CT2K.\",\r\n \"recommendedAction\": \"\\n Ensure that:\\n 1. The Microsoft Azure Site Recovery Provider service is running.\\n 2. The server can connect to the Internet.\\n 3. The proxy settings used to connect to Azure Site Recovery are correct.\\n 4. The Provider version running on the server is up-to-date. Click Download Provider to obtain the latest version\\n 5. The certificate used to connect from Azure to the Configuration server is valid.\\n \",\r\n \"creationTimeUtc\": \"2021-01-20T05:38:27.7889548Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"e2e6c967-95e7-4170-b3e0-b5f3d0d43421\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGU/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d625f19e-abf5-4927-9b5c-df36b2b1e870" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338125773)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942925773)\\/\",\"ClientRequestId\":\"064568f3-6fa1-4edc-b933-a1b39f3f5d0c-2021-01-22 18:55:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EzHakXK/l/q3jfoSl38eNHGp9JVLUUsgY+vaeh9PTSM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "d625f19e-abf5-4927-9b5c-df36b2b1e870 1/22/2021 6:55:25 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d625f19e-abf5-4927-9b5c-df36b2b1e870" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "c1fc3c85-9404-4b10-a05f-d625df198e9a" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185526Z:c1fc3c85-9404-4b10-a05f-d625df198e9a" + ], + "Date": [ + "Fri, 22 Jan 2021 18:55:25 GMT" + ], + "Content-Length": [ + "586" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"H2ASite\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite\",\r\n \"properties\": {\r\n \"friendlyName\": \"H2ASite\",\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\": \"1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdb91f50-c260-44fc-8db1-bc7cc14e4300" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338126124)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942926124)\\/\",\"ClientRequestId\":\"8a658b66-32db-437c-9ef4-1ea1b797021d-2021-01-22 18:55:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+3TzFl3/jHnjGPRUZ7q0OSXgYNtiNg+XRhImPKt1S8w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "fdb91f50-c260-44fc-8db1-bc7cc14e4300 1/22/2021 6:55:26 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "fdb91f50-c260-44fc-8db1-bc7cc14e4300" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "7369745e-0f87-4bf7-9d9d-75576cafd212" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185526Z:7369745e-0f87-4bf7-9d9d-75576cafd212" + ], + "Date": [ + "Fri, 22 Jan 2021 18:55:25 GMT" + ], + "Content-Length": [ + "601" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"name\": \"cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"H2ASite\",\r\n \"friendlyName\": \"H2ASite\",\r\n \"fabricType\": \"HyperVSite\",\r\n \"protectedItemCount\": 5,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectionContainerMappings?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdb91f50-c260-44fc-8db1-bc7cc14e4300" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338126635)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942926635)\\/\",\"ClientRequestId\":\"1d5529ee-4927-4ee4-bdef-545af9122743-2021-01-22 18:55:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cRkFVUfm0xDwo7Lt/Ye7mhX4oMvpelqrYHjY40w+bG0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "fdb91f50-c260-44fc-8db1-bc7cc14e4300 1/22/2021 6:55:27 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "fdb91f50-c260-44fc-8db1-bc7cc14e4300" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "884ee420-a4eb-416c-b06a-91e6e4c59a94" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185527Z:884ee420-a4eb-416c-b06a-91e6e4c59a94" + ], + "Date": [ + "Fri, 22 Jan 2021 18:55:27 GMT" + ], + "Content-Length": [ + "1064" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectionContainerMappings/dcd9a07f-69a5-46f3-bc8e-f2db6b8e9c3e\",\r\n \"name\": \"dcd9a07f-69a5-46f3-bc8e-f2db6b8e9c3e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"sourceFabricFriendlyName\": \"H2ASite\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"b2apolicy\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25Qb2xpY2llcz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdb91f50-c260-44fc-8db1-bc7cc14e4300" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338127492)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942927492)\\/\",\"ClientRequestId\":\"b92507d8-47a6-47f7-bc1d-d077517e9710-2021-01-22 18:55:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zD700mEex0Tdz4hftt/k1LiXQ5wgUKLw+2WN3RBDHfM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "fdb91f50-c260-44fc-8db1-bc7cc14e4300 1/22/2021 6:55:27 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "fdb91f50-c260-44fc-8db1-bc7cc14e4300" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "13ee264a-2307-4c6c-b57d-a13b3bcd87f8" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185527Z:13ee264a-2307-4c6c-b57d-a13b3bcd87f8" + ], + "Date": [ + "Fri, 22 Jan 2021 18:55:27 GMT" + ], + "Content-Length": [ + "3769" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/policy1\",\r\n \"name\": \"policy1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"policy1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/v2apolicy-failback\",\r\n \"name\": \"v2apolicy-failback\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"v2apolicy-failback\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMage\",\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/testvmm\",\r\n \"name\": \"testvmm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"testvmm\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplica2012R2\",\r\n \"replicationFrequencyInSeconds\": 30,\r\n \"recoveryPoints\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"compression\": \"Enabled\",\r\n \"initialReplicationMethod\": \"OverNetwork\",\r\n \"offlineReplicationImportPath\": \"\",\r\n \"offlineReplicationExportPath\": \"\",\r\n \"replicationPort\": 8083,\r\n \"allowedAuthenticationType\": 2,\r\n \"replicaDeletionOption\": \"None\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/policy1-failback\",\r\n \"name\": \"policy1-failback\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"policy1-failback\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMage\",\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"name\": \"b2apolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"b2apolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy1\",\r\n \"name\": \"b2apolicy1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"b2apolicy1\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 4,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 2,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/v2apolicy\",\r\n \"name\": \"v2apolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"v2apolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25Qb2xpY2llcy9iMmFwb2xpY3k/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "153747b7-5453-4119-bcf0-e79433b6392e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338127883)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942927883)\\/\",\"ClientRequestId\":\"7981e1b0-5ece-4f38-a0c9-9d5b2a00ab0c-2021-01-22 18:55:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8N1m3cmHaCqjLhfyhw67ZUnfgQWTTlkMRBxiIlhvl8w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "153747b7-5453-4119-bcf0-e79433b6392e 1/22/2021 6:55:28 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "153747b7-5453-4119-bcf0-e79433b6392e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "d97703f3-b324-4c4a-a9cd-aedada049aa0" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185528Z:d97703f3-b324-4c4a-a9cd-aedada049aa0" + ], + "Date": [ + "Fri, 22 Jan 2021 18:55:27 GMT" + ], + "Content-Length": [ + "522" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"name\": \"b2apolicy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"b2apolicy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryPointHistoryDurationInHours\": 2,\r\n \"applicationConsistentSnapshotFrequencyInHours\": 1,\r\n \"replicationInterval\": 300,\r\n \"encryption\": \"Disabled\",\r\n \"activeStorageAccountId\": null\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e31d737-8a43-4459-a809-550824a733bf" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338128208)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942928208)\\/\",\"ClientRequestId\":\"e09ebbca-6b02-42ad-b6cc-cc333c2d25d6-2021-01-22 18:55:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"brs2FpIvU465Mz/74Lcji4d4As5BMnrTzRk/Vngeibg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "5e31d737-8a43-4459-a809-550824a733bf 1/22/2021 6:55:29 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "5e31d737-8a43-4459-a809-550824a733bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "a995c980-3341-40ed-be7b-50b3d087c83c" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185529Z:a995c980-3341-40ed-be7b-50b3d087c83c" + ], + "Date": [ + "Fri, 22 Jan 2021 18:55:29 GMT" + ], + "Content-Length": [ + "36096" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"name\": \"4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Gen1-2012\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"protectionState\": \"UnplannedFailoverCommitted\",\r\n \"protectionStateDescription\": \"Failover committed\",\r\n \"activeLocation\": \"Recovery\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"CompleteMigration\",\r\n \"DisableProtection\",\r\n \"Failback\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Normal\",\r\n \"healthErrors\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"lastSuccessfulFailoverTime\": \"2021-01-12T20:40:37.5574566Z\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/4ee04dca-9879-48ed-81e7-24e5275971e3/recoveryPoints/4221092d-d8a7-4d16-8a7b-654ad132e468\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"80ba7a95-81b4-4548-9cb7-2092a88abc62\",\r\n \"diskId\": \"4EE04DCA-9879-48ED-81E7-24E5275971E3_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-Gen1-2012_97E88620-FC7C-4995-A0CE-C312B10B2270\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-Gen1-2012\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-12T20:42:11Z\",\r\n \"rpoInSeconds\": 1756,\r\n \"lastRpoCalculatedTime\": \"2021-01-12T21:11:28.3724871Z\",\r\n \"vmId\": \"4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"vmProtectionState\": \"UnplannedFailoverCommitted\",\r\n \"vmProtectionStateDescription\": \"Failover committed\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"21\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OjRFRTA0RENBLTk4NzktNDhFRC04MUU3LTI0RTUyNzU5NzFFM1w1REJERURBNC0xRDFDLTQ2NDYtQTUyQy1COUM5MjI0NTY1ODM=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n },\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OjRFRTA0RENBLTk4NzktNDhFRC04MUU3LTI0RTUyNzU5NzFFM1wxQUZDMTg5Mi01NTZELTRCRDctOTFDRi0yMDkwMDUxQTFBNEE=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OjRFRTA0RENBLTk4NzktNDhFRC04MUU3LTI0RTUyNzU5NzFFM1wxQUZDMTg5Mi01NTZELTRCRDctOTFDRi0yMDkwMDUxQTFBNEE=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Compute/proximityPlacementGroups/westus2PPG\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-12T20:42:11.4168867Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"dcdfca60-555d-4147-a6a3-3ede2a894902\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"name\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Gen2-New\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-Gen2-New'.\",\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-01-22T14:42:13.0438795Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"8d9a7efe-870a-4710-9b49-6eb4f91b2a36\",\r\n \"diskId\": \"A91B0AEB-E364-487B-9237-8491C595BB05_12549549-4859-48A4-9BD2-8B6A81972F3C_0_0\",\r\n \"vhdName\": \"A020-Gen2-New\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-Gen2-New\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:47:38Z\",\r\n \"rpoInSeconds\": 43,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:48:22.4685927Z\",\r\n \"vmId\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"23\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkE5MUIwQUVCLUUzNjQtNDg3Qi05MjM3LTg0OTFDNTk1QkIwNVw5RkZENUQ5RS01MUVELTQ5NUEtOUU4Qy05NTQ3QUIwMENFQkE=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n },\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkE5MUIwQUVCLUUzNjQtNDg3Qi05MjM3LTg0OTFDNTk1QkIwNVxDMzk1QTM2NS1GRjdELTRDM0EtQUZCOC1CRDhBQzZEQkZGNjI=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"VSwitch_VLan\",\r\n \"vMNetworkName\": \"VSwitch_VLan\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkE5MUIwQUVCLUUzNjQtNDg3Qi05MjM3LTg0OTFDNTk1QkIwNVxDMzk1QTM2NS1GRjdELTRDM0EtQUZCOC1CRDhBQzZEQkZGNjI=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:47:38.9089261Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"e1b25977-c3d3-4455-b00e-d5a07a864e7b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"name\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum2\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-VJ-Dum2'.\",\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-01-22T18:54:07.9983471Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"49b0a5e7-04a0-42f8-962b-3ef038a44552\",\r\n \"diskId\": \"D7F72E6C-7E3B-4995-9AB1-DC8C93FE1011_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-VJ-Dum2\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-VJ-Dum2\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Storage/storageAccounts/hrasa\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:49:45Z\",\r\n \"rpoInSeconds\": 4,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:54:49.7220219Z\",\r\n \"vmId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"2\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"false\",\r\n \"licenseType\": \"WindowsServer\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:54:45.1935295Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"cd45c445-1aa0-4a2a-b0b4-6a7af6817d6d\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"name\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum1\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-VJ-Dum1'.\",\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-01-22T18:52:05.0594102Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"b9319153-00b3-45c1-9fa8-7eb7e794d4d3\",\r\n \"diskId\": \"DBA6F9F1-C3A6-4681-A608-0DC0A7C6554A_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-VJ-Dum1\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-VJ-Dum1\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:47:59Z\",\r\n \"rpoInSeconds\": 25,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:53:25.0520633Z\",\r\n \"vmId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/DefaultResourceGroup-WUS2\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:52:59.7835159Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"724e835d-c8a6-46db-b1b8-68302b83c045\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"name\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a020-dum\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Critical\",\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 'a020-dum'.\",\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-01-22T14:42:13.2298305Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnPrimary\",\r\n \"errorType\": \"25\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"68525\",\r\n \"summaryMessage\": \"Delay in App consistent Checkpoint.\",\r\n \"errorMessage\": \"The time duration since the last successful application consistent checkpoint has exceeded the warning limit for the virtual machine.\",\r\n \"possibleCauses\": \"\\n 1. VSS is not enabled or in an unhealthy state in the virtual machine.\\n 2. Unsupported configuration inside the VM like presence of dynamic disk or iSCSI disk.\\n \",\r\n \"recommendedAction\": \"\\n 1. Ensure that latest integration services are installed on the virtual machine.\\n 2. VSS/Backup integration services are enabled for the virtual machine.\\n 3. Check the health state of VSS writers in the virtual machine.\\n \",\r\n \"creationTimeUtc\": \"2020-12-17T03:38:42.2619405Z\",\r\n \"recoveryProviderErrorMessage\": \"Time duration since the last successful application consistent checkpoint has exceeded the warning limit for the virtual machine 'a020-dum'. (Virtual machine ID F42F6665-5B86-4EF4-BB55-8E7B9C545F9E)\",\r\n \"entityId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"errorId\": \"2:25\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnReplica\",\r\n \"errorType\": \"301\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"70171\",\r\n \"summaryMessage\": \"Recent app-consistent recovery point not available\",\r\n \"errorMessage\": \"No application consistent recovery point available for the VM in the last 240 minutes.\",\r\n \"possibleCauses\": \"\\n 1. Replication is progressing slowly or is not progressing as expected.\\n 2. The target storage account is not provisioned with sufficient throughput or IOPs to handle the volume of replication data.\\n \",\r\n \"recommendedAction\": \"\\n Ensure that:\\n 1. Application-consistent snapshot frequency is configured to a valid value in the replication policy.\\n 2. There is sufficient network bandwidth available between the HyperV server and Azure.\\n 3. Look for any associated events in the site recovery events table and resolve them if any.\\n \",\r\n \"creationTimeUtc\": \"2020-12-17T17:24:49.7901306Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"errorId\": \"3:301\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"c164f745-d66c-4fa5-ae47-830c0d97b262\",\r\n \"diskId\": \"F42F6665-5B86-4EF4-BB55-8E7B9C545F9E_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"a020-dum\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"a020-dum\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:47:39Z\",\r\n \"rpoInSeconds\": 46,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:48:25.7939984Z\",\r\n \"vmId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkY0MkY2NjY1LTVCODYtNEVGNC1CQjU1LThFN0I5QzU0NUY5RVxFQzlFQ0I1NC1EMEZBLTRCNEQtQThFNS0xNDM1QjgwOTAxRDc=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkY0MkY2NjY1LTVCODYtNEVGNC1CQjU1LThFN0I5QzU0NUY5RVxFQzlFQ0I1NC1EMEZBLTRCNEQtQThFNS0xNDM1QjgwOTAxRDc=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg\",\r\n \"recoveryAvailabilitySetId\": null,\r\n \"targetAvailabilityZone\": null,\r\n \"targetProximityPlacementGroupId\": null,\r\n \"useManagedDisks\": \"false\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:47:39.3462749Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"ea753b00-9ede-4bea-b302-459915e5f69e\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1f1c3c5-ec94-4515-ab59-a912e0382b19" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338132595)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942932595)\\/\",\"ClientRequestId\":\"e6d06814-e0fb-45b8-bb3e-82807010191b-2021-01-22 18:55:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UOrv9pQk+i+EoStIqwMrv1j3o5dxHBE+hTSFshTH03o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "c1f1c3c5-ec94-4515-ab59-a912e0382b19 1/22/2021 6:55:32 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c1f1c3c5-ec94-4515-ab59-a912e0382b19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "da6689c6-32a8-416e-b38d-2c3fcdebd5f0" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185532Z:da6689c6-32a8-416e-b38d-2c3fcdebd5f0" + ], + "Date": [ + "Fri, 22 Jan 2021 18:55:32 GMT" + ], + "Content-Length": [ + "36096" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"name\": \"4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Gen1-2012\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"protectionState\": \"UnplannedFailoverCommitted\",\r\n \"protectionStateDescription\": \"Failover committed\",\r\n \"activeLocation\": \"Recovery\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"CompleteMigration\",\r\n \"DisableProtection\",\r\n \"Failback\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Normal\",\r\n \"healthErrors\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"lastSuccessfulFailoverTime\": \"2021-01-12T20:40:37.5574566Z\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/4ee04dca-9879-48ed-81e7-24e5275971e3/recoveryPoints/4221092d-d8a7-4d16-8a7b-654ad132e468\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"80ba7a95-81b4-4548-9cb7-2092a88abc62\",\r\n \"diskId\": \"4EE04DCA-9879-48ED-81E7-24E5275971E3_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-Gen1-2012_97E88620-FC7C-4995-A0CE-C312B10B2270\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-Gen1-2012\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-12T20:42:11Z\",\r\n \"rpoInSeconds\": 1756,\r\n \"lastRpoCalculatedTime\": \"2021-01-12T21:11:28.3724871Z\",\r\n \"vmId\": \"4ee04dca-9879-48ed-81e7-24e5275971e3\",\r\n \"vmProtectionState\": \"UnplannedFailoverCommitted\",\r\n \"vmProtectionStateDescription\": \"Failover committed\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"21\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OjRFRTA0RENBLTk4NzktNDhFRC04MUU3LTI0RTUyNzU5NzFFM1w1REJERURBNC0xRDFDLTQ2NDYtQTUyQy1COUM5MjI0NTY1ODM=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n },\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OjRFRTA0RENBLTk4NzktNDhFRC04MUU3LTI0RTUyNzU5NzFFM1wxQUZDMTg5Mi01NTZELTRCRDctOTFDRi0yMDkwMDUxQTFBNEE=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OjRFRTA0RENBLTk4NzktNDhFRC04MUU3LTI0RTUyNzU5NzFFM1wxQUZDMTg5Mi01NTZELTRCRDctOTFDRi0yMDkwMDUxQTFBNEE=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Compute/proximityPlacementGroups/westus2PPG\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-12T20:42:11.4168867Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"dcdfca60-555d-4147-a6a3-3ede2a894902\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"name\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-Gen2-New\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-Gen2-New'.\",\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-01-22T14:42:13.0438795Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"8d9a7efe-870a-4710-9b49-6eb4f91b2a36\",\r\n \"diskId\": \"A91B0AEB-E364-487B-9237-8491C595BB05_12549549-4859-48A4-9BD2-8B6A81972F3C_0_0\",\r\n \"vhdName\": \"A020-Gen2-New\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-Gen2-New\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:47:38Z\",\r\n \"rpoInSeconds\": 43,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:48:22.4685927Z\",\r\n \"vmId\": \"a91b0aeb-e364-487b-9237-8491c595bb05\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"23\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkE5MUIwQUVCLUUzNjQtNDg3Qi05MjM3LTg0OTFDNTk1QkIwNVw5RkZENUQ5RS01MUVELTQ5NUEtOUU4Qy05NTQ3QUIwMENFQkE=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n },\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkE5MUIwQUVCLUUzNjQtNDg3Qi05MjM3LTg0OTFDNTk1QkIwNVxDMzk1QTM2NS1GRjdELTRDM0EtQUZCOC1CRDhBQzZEQkZGNjI=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"VSwitch_VLan\",\r\n \"vMNetworkName\": \"VSwitch_VLan\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkE5MUIwQUVCLUUzNjQtNDg3Qi05MjM3LTg0OTFDNTk1QkIwNVxDMzk1QTM2NS1GRjdELTRDM0EtQUZCOC1CRDhBQzZEQkZGNjI=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:47:38.9089261Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"e1b25977-c3d3-4455-b00e-d5a07a864e7b\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"name\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum2\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-VJ-Dum2'.\",\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-01-22T18:54:07.9983471Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"49b0a5e7-04a0-42f8-962b-3ef038a44552\",\r\n \"diskId\": \"D7F72E6C-7E3B-4995-9AB1-DC8C93FE1011_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-VJ-Dum2\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-VJ-Dum2\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Storage/storageAccounts/hrasa\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:49:45Z\",\r\n \"rpoInSeconds\": 4,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:54:49.7220219Z\",\r\n \"vmId\": \"d7f72e6c-7e3b-4995-9ab1-dc8c93fe1011\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkQ3RjcyRTZDLTdFM0ItNDk5NS05QUIxLURDOEM5M0ZFMTAxMVw1RDVCMUU0MC0xQTdELTRCQjctQTE4Ri1GM0UxREM2Mzk0Qjc=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"2\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"false\",\r\n \"licenseType\": \"WindowsServer\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:54:45.1935295Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"cd45c445-1aa0-4a2a-b0b4-6a7af6817d6d\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"name\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum1\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-VJ-Dum1'.\",\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-01-22T18:52:05.0594102Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"b9319153-00b3-45c1-9fa8-7eb7e794d4d3\",\r\n \"diskId\": \"DBA6F9F1-C3A6-4681-A608-0DC0A7C6554A_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-VJ-Dum1\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-VJ-Dum1\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:47:59Z\",\r\n \"rpoInSeconds\": 25,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:53:25.0520633Z\",\r\n \"vmId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/DefaultResourceGroup-WUS2\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:52:59.7835159Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"724e835d-c8a6-46db-b1b8-68302b83c045\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"name\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a020-dum\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Critical\",\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 'a020-dum'.\",\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-01-22T14:42:13.2298305Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnPrimary\",\r\n \"errorType\": \"25\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"68525\",\r\n \"summaryMessage\": \"Delay in App consistent Checkpoint.\",\r\n \"errorMessage\": \"The time duration since the last successful application consistent checkpoint has exceeded the warning limit for the virtual machine.\",\r\n \"possibleCauses\": \"\\n 1. VSS is not enabled or in an unhealthy state in the virtual machine.\\n 2. Unsupported configuration inside the VM like presence of dynamic disk or iSCSI disk.\\n \",\r\n \"recommendedAction\": \"\\n 1. Ensure that latest integration services are installed on the virtual machine.\\n 2. VSS/Backup integration services are enabled for the virtual machine.\\n 3. Check the health state of VSS writers in the virtual machine.\\n \",\r\n \"creationTimeUtc\": \"2020-12-17T03:38:42.2619405Z\",\r\n \"recoveryProviderErrorMessage\": \"Time duration since the last successful application consistent checkpoint has exceeded the warning limit for the virtual machine 'a020-dum'. (Virtual machine ID F42F6665-5B86-4EF4-BB55-8E7B9C545F9E)\",\r\n \"entityId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"errorId\": \"2:25\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnReplica\",\r\n \"errorType\": \"301\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"70171\",\r\n \"summaryMessage\": \"Recent app-consistent recovery point not available\",\r\n \"errorMessage\": \"No application consistent recovery point available for the VM in the last 240 minutes.\",\r\n \"possibleCauses\": \"\\n 1. Replication is progressing slowly or is not progressing as expected.\\n 2. The target storage account is not provisioned with sufficient throughput or IOPs to handle the volume of replication data.\\n \",\r\n \"recommendedAction\": \"\\n Ensure that:\\n 1. Application-consistent snapshot frequency is configured to a valid value in the replication policy.\\n 2. There is sufficient network bandwidth available between the HyperV server and Azure.\\n 3. Look for any associated events in the site recovery events table and resolve them if any.\\n \",\r\n \"creationTimeUtc\": \"2020-12-17T17:24:49.7901306Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"errorId\": \"3:301\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"c164f745-d66c-4fa5-ae47-830c0d97b262\",\r\n \"diskId\": \"F42F6665-5B86-4EF4-BB55-8E7B9C545F9E_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"a020-dum\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"a020-dum\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:47:39Z\",\r\n \"rpoInSeconds\": 46,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:48:25.7939984Z\",\r\n \"vmId\": \"f42f6665-5b86-4ef4-bb55-8e7b9c545f9e\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkY0MkY2NjY1LTVCODYtNEVGNC1CQjU1LThFN0I5QzU0NUY5RVxFQzlFQ0I1NC1EMEZBLTRCNEQtQThFNS0xNDM1QjgwOTAxRDc=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkY0MkY2NjY1LTVCODYtNEVGNC1CQjU1LThFN0I5QzU0NUY5RVxFQzlFQ0I1NC1EMEZBLTRCNEQtQThFNS0xNDM1QjgwOTAxRDc=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg\",\r\n \"recoveryAvailabilitySetId\": null,\r\n \"targetAvailabilityZone\": null,\r\n \"targetProximityPlacementGroupId\": null,\r\n \"useManagedDisks\": \"false\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:47:39.3462749Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"ea753b00-9ede-4bea-b302-459915e5f69e\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9kYmE2ZjlmMS1jM2E2LTQ2ODEtYTYwOC0wZGMwYTdjNjU1NGE/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e31d737-8a43-4459-a809-550824a733bf" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338129604)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942929604)\\/\",\"ClientRequestId\":\"3bbde84c-6569-43fe-bf66-33d4f8570ffd-2021-01-22 18:55:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Zy6sAwMEHQA4JveV4RUmMrU8+Ya8cDv/UGEhVG568AQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "5e31d737-8a43-4459-a809-550824a733bf 1/22/2021 6:55:29 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "5e31d737-8a43-4459-a809-550824a733bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "d89aca9f-6055-4bd3-9265-3641b6a1a311" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185529Z:d89aca9f-6055-4bd3-9265-3641b6a1a311" + ], + "Date": [ + "Fri, 22 Jan 2021 18:55:29 GMT" + ], + "Content-Length": [ + "6320" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"name\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum1\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-VJ-Dum1'.\",\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-01-22T18:52:05.0594102Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"b9319153-00b3-45c1-9fa8-7eb7e794d4d3\",\r\n \"diskId\": \"DBA6F9F1-C3A6-4681-A608-0DC0A7C6554A_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-VJ-Dum1\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-VJ-Dum1\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:47:59Z\",\r\n \"rpoInSeconds\": 25,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:53:25.0520633Z\",\r\n \"vmId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/DefaultResourceGroup-WUS2\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:52:59.7835159Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"724e835d-c8a6-46db-b1b8-68302b83c045\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9kYmE2ZjlmMS1jM2E2LTQ2ODEtYTYwOC0wZGMwYTdjNjU1NGE/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d8e1e39-234f-41c0-9be3-fe86e22df923" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338130085)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942930085)\\/\",\"ClientRequestId\":\"4d316d50-a30a-4e7e-9d6b-ecb7850db8cf-2021-01-22 18:55:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8eh1+/xMoYJ2HurTpdlObO/U2Z8NulSMp2AREREt4ZU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "4d8e1e39-234f-41c0-9be3-fe86e22df923 1/22/2021 6:55:30 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4d8e1e39-234f-41c0-9be3-fe86e22df923" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "34116fd3-38e0-421c-ab3a-d3e13ce30b0a" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185530Z:34116fd3-38e0-421c-ab3a-d3e13ce30b0a" + ], + "Date": [ + "Fri, 22 Jan 2021 18:55:30 GMT" + ], + "Content-Length": [ + "6320" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"name\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum1\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-VJ-Dum1'.\",\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-01-22T18:52:05.0594102Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"b9319153-00b3-45c1-9fa8-7eb7e794d4d3\",\r\n \"diskId\": \"DBA6F9F1-C3A6-4681-A608-0DC0A7C6554A_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-VJ-Dum1\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-VJ-Dum1\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:47:59Z\",\r\n \"rpoInSeconds\": 25,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:53:25.0520633Z\",\r\n \"vmId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/DefaultResourceGroup-WUS2\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:52:59.7835159Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"724e835d-c8a6-46db-b1b8-68302b83c045\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9kYmE2ZjlmMS1jM2E2LTQ2ODEtYTYwOC0wZGMwYTdjNjU1NGE/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1f1c3c5-ec94-4515-ab59-a912e0382b19" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338133073)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942933073)\\/\",\"ClientRequestId\":\"07c78c74-1ca3-4754-8c8e-b50faabf231d-2021-01-22 18:55:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PUqtP+N3/H3hADfKRYhnJerSXaw5z5wT242VfBhbZS8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "c1f1c3c5-ec94-4515-ab59-a912e0382b19 1/22/2021 6:55:33 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c1f1c3c5-ec94-4515-ab59-a912e0382b19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "bec7660d-ad83-404e-9bbd-374e7b4f26a5" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185533Z:bec7660d-ad83-404e-9bbd-374e7b4f26a5" + ], + "Date": [ + "Fri, 22 Jan 2021 18:55:32 GMT" + ], + "Content-Length": [ + "6456" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"name\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"A020-VJ-Dum1\",\r\n \"protectedItemType\": \"HyperVVirtualMachine\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectableItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationRecoveryServicesProviders/37e0cc00-d024-4e3a-8ab1-eb990a448ca3\",\r\n \"primaryFabricFriendlyName\": \"H2ASite\",\r\n \"primaryFabricProvider\": \"SingleHostHyperVFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"H2ASite\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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 \"PlannedFailover\",\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 'A020-VJ-Dum1'.\",\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-01-22T18:52:05.0594102Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationPolicies/b2apolicy\",\r\n \"policyFriendlyName\": \"b2apolicy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"azureVmDiskDetails\": [\r\n {\r\n \"vhdType\": \"OperatingSystem\",\r\n \"vhdId\": \"b9319153-00b3-45c1-9fa8-7eb7e794d4d3\",\r\n \"diskId\": \"DBA6F9F1-C3A6-4681-A608-0DC0A7C6554A_83F8638B-8DCA-4152-9EDA-2CA8B33039B4_0_0\",\r\n \"vhdName\": \"A020-VJ-Dum1\",\r\n \"maxSizeMB\": \"40960\",\r\n \"targetDiskLocation\": null,\r\n \"targetDiskName\": null,\r\n \"lunId\": \"0\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"recoveryAzureVmName\": \"A020-VJ-Dum1\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"recoveryAzureStorageAccount\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakwus2rg/providers/Microsoft.Storage/storageAccounts/prakstoragev1\",\r\n \"recoveryAzureLogStorageAccountId\": null,\r\n \"lastReplicatedTime\": \"2021-01-22T18:47:59Z\",\r\n \"rpoInSeconds\": 25,\r\n \"lastRpoCalculatedTime\": \"2021-01-22T18:53:25.0520633Z\",\r\n \"vmId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"initialReplicationDetails\": {\r\n \"initialReplicationType\": \"InitialReplication\",\r\n \"initialReplicationProgressPercentage\": \"0\"\r\n },\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"HRMExternalNetwork\",\r\n \"vMNetworkName\": \"HRMExternalNetwork\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Static\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"encryption\": \"Disabled\",\r\n \"oSDetails\": {\r\n \"osType\": \"Windows\",\r\n \"productType\": \"UNKNOWN\",\r\n \"osEdition\": \"Standard\",\r\n \"oSVersion\": \"1.1.1.1\",\r\n \"oSMajorVersion\": \"0\",\r\n \"oSMinorVersion\": \"0\"\r\n },\r\n \"sourceVmRamSizeInMB\": 512,\r\n \"sourceVmCpuCount\": 1,\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/DefaultResourceGroup-WUS2\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Compute/proximityPlacementGroups/ppgh2aset\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"WindowsServer\",\r\n \"lastRecoveryPointReceived\": \"2021-01-22T18:52:59.7835159Z\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"724e835d-c8a6-46db-b1b8-68302b83c045\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25GYWJyaWNzL0gyQVNpdGUvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF8xZWZhYzJiNS0xYWMyLTVlZmQtOGFmYS00NDg3YTZjYWQ5YjIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9kYmE2ZjlmMS1jM2E2LTQ2ODEtYTYwOC0wZGMwYTdjNjU1NGE/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryAzureVMName\": \"A020-VJ-Dum1\",\r\n \"recoveryAzureVMSize\": \"Standard_B1s\",\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/A2APortalVal-RG-asr-1/providers/Microsoft.Network/virtualNetworks/A2APortalVal-RG-vnet-asr\",\r\n \"selectedTfoAzureNetworkId\": \"\",\r\n \"selectedSourceNicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"TWljcm9zb2Z0OkRCQTZGOUYxLUMzQTYtNDY4MS1BNjA4LTBEQzBBN0M2NTU0QVw3NTBGNjkxQS00NDgwLTREMEQtOTUxNy04QUNBQTUwNEFBQjY=\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": []\r\n }\r\n ],\r\n \"licenseType\": \"WindowsServer\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"HyperVReplicaAzure\",\r\n \"recoveryAzureV2ResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/DefaultResourceGroup-WUS2\",\r\n \"useManagedDisks\": \"true\",\r\n \"targetProximityPlacementGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/h2arg/providers/Microsoft.Compute/proximityPlacementGroups/ppgh2aset\",\r\n \"targetAvailabilityZone\": \"\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d8e1e39-234f-41c0-9be3-fe86e22df923" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338130552)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942930552)\\/\",\"ClientRequestId\":\"4fc47e50-9849-40a5-b821-15fb8f045092-2021-01-22 18:55:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uNplUZI86RdN3yD0MUOUmmkMr3PgcAf4RkD7bjooK5Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1490" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationFabrics/H2ASite/replicationProtectionContainers/cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2/replicationProtectedItems/dba6f9f1-c3a6-4681-a608-0dc0a7c6554a/operationresults/914befbc-7f8a-4e4b-9fb0-be7c97313da5?api-version=2018-07-10" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/914befbc-7f8a-4e4b-9fb0-be7c97313da5", + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/914befbc-7f8a-4e4b-9fb0-be7c97313da5" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationOperationStatus/914befbc-7f8a-4e4b-9fb0-be7c97313da5?api-version=2018-07-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4d8e1e39-234f-41c0-9be3-fe86e22df923" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "ecbf3916-108c-4fed-af99-e77552c74e5c" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185531Z:ecbf3916-108c-4fed-af99-e77552c74e5c" + ], + "Date": [ + "Fri, 22 Jan 2021 18:55:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/914befbc-7f8a-4e4b-9fb0-be7c97313da5?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ByYWtyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0gyQVRlc3QvcmVwbGljYXRpb25Kb2JzLzkxNGJlZmJjLTdmOGEtNGU0Yi05ZmIwLWJlN2M5NzMxM2RhNT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d8e1e39-234f-41c0-9be3-fe86e22df923" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611338132242)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611942932242)\\/\",\"ClientRequestId\":\"fce5b266-d11a-457b-afef-57ad6f7d2a49-2021-01-22 18:55:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+fPYtpXaFGh0r+jIgDLUHTkfOBE3qFYwdWkiIB04usw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/914befbc-7f8a-4e4b-9fb0-be7c97313da5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4d8e1e39-234f-41c0-9be3-fe86e22df923" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "8502ceb0-6932-4130-8de5-f0028abab334" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T185532Z:8502ceb0-6932-4130-8de5-f0028abab334" + ], + "Date": [ + "Fri, 22 Jan 2021 18:55:31 GMT" + ], + "Content-Length": [ + "1847" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/prakrg/providers/Microsoft.RecoveryServices/vaults/H2ATest/replicationJobs/914befbc-7f8a-4e4b-9fb0-be7c97313da5\",\r\n \"name\": \"914befbc-7f8a-4e4b-9fb0-be7c97313da5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4d8e1e39-234f-41c0-9be3-fe86e22df923 ActivityId: ecbf3916-108c-4fed-af99-e77552c74e5c\",\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\": \"5efdc129-7e67-4e7c-8a89-539a904f8bed\",\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-01-22T18:55:31.581818Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"targetObjectName\": \"A020-VJ-Dum1\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"dba6f9f1-c3a6-4681-a608-0dc0a7c6554a\",\r\n \"primaryVmName\": \"A020-VJ-Dum1\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"A020-VJ-Dum1\",\r\n \"protectionProfileId\": \"3e031e8e-87c4-5c1d-8ca2-19e3483da958\",\r\n \"primaryCloudId\": \"cloud_1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"primaryCloudName\": \"H2ASite\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"1efac2b5-1ac2-5efd-8afa-4487a6cad9b2\",\r\n \"primaryVmmName\": \"H2ASite\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"HyperVSite\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c" + } +} \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrV2ATests/V2ACreateRPIWithAvZone.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrV2ATests/V2ACreateRPIWithAvZone.json new file mode 100644 index 000000000000..5e980ff2dae0 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrV2ATests/V2ACreateRPIWithAvZone.json @@ -0,0 +1,1128 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73cf3d8a-069a-4a4c-a350-92127a967b41" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.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-ms-original-request-ids": [ + "ca37e7fe-5481-4331-a568-9f3eaf6c6402", + "ca37e7fe-5481-4331-a568-9f3eaf6c6402" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "ca37e7fe-5481-4331-a568-9f3eaf6c6402" + ], + "x-ms-correlation-request-id": [ + "ca37e7fe-5481-4331-a568-9f3eaf6c6402" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083010Z:ca37e7fe-5481-4331-a568-9f3eaf6c6402" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1374" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidyavault\",\r\n \"etag\": \"W/\\\"datetime'2021-01-22T05%3A15%3A43.2034947Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vijamivault\",\r\n \"etag\": \"W/\\\"datetime'2021-01-19T08%3A03%3A26.3037424Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vijamivault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testvault\",\r\n \"etag\": \"W/\\\"datetime'2021-01-15T04%3A31%3A48.0780041Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/testvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "812fe3a1-01ef-415a-80e1-fa6fb83beb1c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611300610193)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611905410193)\\/\",\"ClientRequestId\":\"763eb184-1b7e-41da-acaa-2ca4a1b1e9b1-2021-01-22 08:30:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Iqv8Rpdm6n+An1mCy8/Ybm+T3dBMFKuaIh1u4R6MiDA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "812fe3a1-01ef-415a-80e1-fa6fb83beb1c 1/22/2021 8:30:11 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "812fe3a1-01ef-415a-80e1-fa6fb83beb1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "2bcec4e1-5429-42ff-befb-645fdd089362" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083011Z:2bcec4e1-5429-42ff-befb-645fdd089362" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:11 GMT" + ], + "Content-Length": [ + "9414" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"hyperv\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/hyperv\",\r\n \"properties\": {\r\n \"friendlyName\": \"hyperv\",\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\": \"46e5f324-c3fa-508e-8a90-a3232d20dce0\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"properties\": {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\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\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T08:13:12Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"machineCount\": \"0\",\r\n \"replicationPairCount\": \"0\",\r\n \"systemLoad\": \"7\",\r\n \"systemLoadStatus\": \"Yellow\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2358322215,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24448649557,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:54Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"osVersion\": null,\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"health\": \"Critical\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2021-01-22T08:18:07Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 0,\r\n \"throughputInBytes\": 0,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": null,\r\n \"marsRegistrationStatus\": null\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"name\": \"WIN-B6L6OJO1E6Q\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T08:17:17Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"retentionVolumes\": [],\r\n \"dataStores\": [\r\n {\r\n \"symbolicName\": \"datastore1\",\r\n \"uuid\": \"5fda103a-1a1e7a80-f1bd-4cd98f63b7b7\",\r\n \"capacity\": \"550.75\",\r\n \"freeSpace\": \"206.12\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"datastore78-ext2\",\r\n \"uuid\": \"5de660af-54cd74db-e392-f8bc124d6486\",\r\n \"capacity\": \"5119.75\",\r\n \"freeSpace\": \"419.13\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"Newdatastore\",\r\n \"uuid\": \"5fe1f478-e5a7e09a-702b-4cd98f63b7b7\",\r\n \"capacity\": \"3071.75\",\r\n \"freeSpace\": \"560.31\",\r\n \"type\": \"VMFS\"\r\n }\r\n ],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"diskCount\": 1,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"marsAgentVersion\": \"2.0.9165.0\",\r\n \"marsAgentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9165.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [\r\n {\r\n \"accountId\": \"1\",\r\n \"accountName\": \"winacc\"\r\n },\r\n {\r\n \"accountId\": \"2\",\r\n \"accountName\": \"vcenteracc\"\r\n }\r\n ],\r\n \"replicationPairCount\": \"0\",\r\n \"processServerCount\": \"1\",\r\n \"agentCount\": \"1\",\r\n \"protectedServers\": \"0\",\r\n \"systemLoad\": \"7\",\r\n \"systemLoadStatus\": \"Yellow\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2358322215,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24448649557,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"hostName\": \"WIN-B6L6OJO1E6Q\",\r\n \"lastHeartbeat\": \"2021-01-22T08:18:21.5044158Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:53Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"psTemplateVersion\": \"202101.07.00\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"ConfigurationServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"816\",\r\n \"summaryMessage\": \"Configuration server or Azure Site Recovery Provider version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Configuration Server or Azure Site Recovery Provider ended on (01/01/0001). The service is currently running with limited functionality, upgrade Configuration Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Configuration Server or Azure Site Recovery Provider has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Configuration Server or Azure Site Recovery Provider now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4698556Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTg/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "812fe3a1-01ef-415a-80e1-fa6fb83beb1c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611300611794)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611905411794)\\/\",\"ClientRequestId\":\"536154ea-06ff-4b48-9f56-fb6a5968e5b4-2021-01-22 08:30:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1Z8GzpNosLfkZ1TMX2fFzNt/ZZI7qTySmbLtMMM7N20=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "812fe3a1-01ef-415a-80e1-fa6fb83beb1c 1/22/2021 8:30:12 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "812fe3a1-01ef-415a-80e1-fa6fb83beb1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "52264515-0f8b-423d-9220-ad2dc32a3fc4" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083012Z:52264515-0f8b-423d-9220-ad2dc32a3fc4" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:11 GMT" + ], + "Content-Length": [ + "8770" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"properties\": {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\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\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T08:13:12Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"machineCount\": \"0\",\r\n \"replicationPairCount\": \"0\",\r\n \"systemLoad\": \"7\",\r\n \"systemLoadStatus\": \"Yellow\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2358322215,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24448649557,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:54Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"osVersion\": null,\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"health\": \"Critical\",\r\n \"psStatsRefreshTime\": \"2021-01-22T08:18:07Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 0,\r\n \"throughputInBytes\": 0,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": null,\r\n \"marsRegistrationStatus\": null\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"name\": \"WIN-B6L6OJO1E6Q\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T08:17:17Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"retentionVolumes\": [],\r\n \"dataStores\": [\r\n {\r\n \"symbolicName\": \"datastore1\",\r\n \"uuid\": \"5fda103a-1a1e7a80-f1bd-4cd98f63b7b7\",\r\n \"capacity\": \"550.75\",\r\n \"freeSpace\": \"206.12\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"datastore78-ext2\",\r\n \"uuid\": \"5de660af-54cd74db-e392-f8bc124d6486\",\r\n \"capacity\": \"5119.75\",\r\n \"freeSpace\": \"419.13\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"Newdatastore\",\r\n \"uuid\": \"5fe1f478-e5a7e09a-702b-4cd98f63b7b7\",\r\n \"capacity\": \"3071.75\",\r\n \"freeSpace\": \"560.31\",\r\n \"type\": \"VMFS\"\r\n }\r\n ],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"diskCount\": 1,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"marsAgentVersion\": \"2.0.9165.0\",\r\n \"marsAgentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9165.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [\r\n {\r\n \"accountId\": \"1\",\r\n \"accountName\": \"winacc\"\r\n },\r\n {\r\n \"accountId\": \"2\",\r\n \"accountName\": \"vcenteracc\"\r\n }\r\n ],\r\n \"replicationPairCount\": \"0\",\r\n \"processServerCount\": \"1\",\r\n \"agentCount\": \"1\",\r\n \"protectedServers\": \"0\",\r\n \"systemLoad\": \"7\",\r\n \"systemLoadStatus\": \"Yellow\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2358322215,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24448649557,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"hostName\": \"WIN-B6L6OJO1E6Q\",\r\n \"lastHeartbeat\": \"2021-01-22T08:18:21.5044158Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:53Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"psTemplateVersion\": \"202101.07.00\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"ConfigurationServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"816\",\r\n \"summaryMessage\": \"Configuration server or Azure Site Recovery Provider version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Configuration Server or Azure Site Recovery Provider ended on (01/01/0001). The service is currently running with limited functionality, upgrade Configuration Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Configuration Server or Azure Site Recovery Provider has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Configuration Server or Azure Site Recovery Provider now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4698556Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8444833-668a-4aa3-9be5-478509b44b22" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611300612241)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611905412241)\\/\",\"ClientRequestId\":\"0daa4f5e-8522-4942-a2be-903377de80c0-2021-01-22 08:30:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8tmRnYLWwXQVHlTdUmPet1UhSOQfZB26/yepeEoW3bg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "f8444833-668a-4aa3-9be5-478509b44b22 1/22/2021 8:30:12 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "f8444833-668a-4aa3-9be5-478509b44b22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "9c46a2c5-0eda-481a-99b3-9c8c471be8ba" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083012Z:9c46a2c5-0eda-481a-99b3-9c8c471be8ba" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:11 GMT" + ], + "Content-Length": [ + "676" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"name\": \"cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"fabricType\": \"VMware\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2Y/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8444833-668a-4aa3-9be5-478509b44b22" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611300612603)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611905412603)\\/\",\"ClientRequestId\":\"9a889712-4b30-49dd-a793-48b89a925a8e-2021-01-22 08:30:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2E1xb8aNAwWBHRc3RX32wVXcGPne3aTP4F3+KmPKEYY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "f8444833-668a-4aa3-9be5-478509b44b22 1/22/2021 8:30:12 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "f8444833-668a-4aa3-9be5-478509b44b22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "a6d4fa47-1a24-4db4-97e2-dc2cf38b1f3f" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083012Z:a6d4fa47-1a24-4db4-97e2-dc2cf38b1f3f" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:12 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"name\": \"cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"fabricType\": \"VMware\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8444833-668a-4aa3-9be5-478509b44b22" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611300612961)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611905412961)\\/\",\"ClientRequestId\":\"ffabffeb-e01b-43f3-8fa4-1a9784709a33-2021-01-22 08:30:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/e7GvVrQPrptoaknWdS2+C5WG2u8V1tMh0OTxbKqtTI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "f8444833-668a-4aa3-9be5-478509b44b22 1/22/2021 8:30:13 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "f8444833-668a-4aa3-9be5-478509b44b22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "a5ab4213-dbe1-41c0-b5c6-20862b87eb15" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083013Z:a5ab4213-dbe1-41c0-b5c6-20862b87eb15" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:12 GMT" + ], + "Content-Length": [ + "2572" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"name\": \"f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"sourceFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"test-policy\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/ae9dfb2d-7c1b-4df9-8947-b742d6172721\",\r\n \"name\": \"ae9dfb2d-7c1b-4df9-8947-b742d6172721\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"targetProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy-failback\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"sourceFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"targetFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"policyFriendlyName\": \"test-policy-failback\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Qb2xpY2llcy90ZXN0LXBvbGljeT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8444833-668a-4aa3-9be5-478509b44b22" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611300613376)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611905413376)\\/\",\"ClientRequestId\":\"8ce1a5a7-fb32-47f3-ac0c-b0da494fa60d-2021-01-22 08:30:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"heH068FEzdJxtDh9B7IkpJJ5FOqGdAkBpJjeXbhYHBM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "f8444833-668a-4aa3-9be5-478509b44b22 1/22/2021 8:30:13 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "f8444833-668a-4aa3-9be5-478509b44b22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "16bb8d7d-aecc-4eb6-be5c-cf6b7b73b498" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083013Z:16bb8d7d-aecc-4eb6-be5c-cf6b7b73b498" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:12 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"name\": \"test-policy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Qb2xpY2llcy90ZXN0LXBvbGljeT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39e0b35e-e77a-4bc9-921e-00235ee7b47b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611300613996)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611905413996)\\/\",\"ClientRequestId\":\"a06de9fb-0ce7-43de-a1ed-069ad2c86db3-2021-01-22 08:30:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YVcsjCYB6MFZJMt1NOK+13tOXHoxOuyz//VvRVSX0og=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "39e0b35e-e77a-4bc9-921e-00235ee7b47b 1/22/2021 8:30:14 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "39e0b35e-e77a-4bc9-921e-00235ee7b47b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "d97afe7f-f1bc-4785-9f2f-8b827265c631" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083014Z:d97afe7f-f1bc-4785-9f2f-8b827265c631" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:13 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"name\": \"test-policy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Qb2xpY2llcy90ZXN0LXBvbGljeT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "181b1d8d-e3f6-4a24-a1d6-77c556eef52d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611300617107)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611905417107)\\/\",\"ClientRequestId\":\"742c1309-a48d-43d2-8d3a-b9bd0072030b-2021-01-22 08:30:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4yV2v55cv7MZrd1WJDgaugqfezuYZTwoQXwy6xhvY/U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "181b1d8d-e3f6-4a24-a1d6-77c556eef52d 1/22/2021 8:30:17 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "181b1d8d-e3f6-4a24-a1d6-77c556eef52d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "06af1630-c81c-4ab5-ae64-956ff2df2fad" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083017Z:06af1630-c81c-4ab5-ae64-956ff2df2fad" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:16 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"name\": \"test-policy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy-failback?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Qb2xpY2llcy90ZXN0LXBvbGljeS1mYWlsYmFjaz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8444833-668a-4aa3-9be5-478509b44b22" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611300613699)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611905413699)\\/\",\"ClientRequestId\":\"7d4f99d3-69e5-4467-b962-f01965a609f2-2021-01-22 08:30:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dE9/7Bb37f6uiI2tEeNvp5eYQvW6F50oimou/SzkIAc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "f8444833-668a-4aa3-9be5-478509b44b22 1/22/2021 8:30:13 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "f8444833-668a-4aa3-9be5-478509b44b22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "4ebd578d-8e2f-436e-ab14-496219e32f60" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083013Z:4ebd578d-8e2f-436e-ab14-496219e32f60" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:13 GMT" + ], + "Content-Length": [ + "511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy-failback\",\r\n \"name\": \"test-policy-failback\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy-failback\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMage\",\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/f858b936-ee57-44c4-9ff9-2907d418fbd2?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvZjg1OGI5MzYtZWU1Ny00NGM0LTlmZjktMjkwN2Q0MThmYmQyP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3072206-01d9-42aa-af0c-37eb2466f8c7" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611300614294)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611905414294)\\/\",\"ClientRequestId\":\"27e142c0-7eb6-45ae-a03f-53d106be2b4f-2021-01-22 08:30:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yjy9y9zU3uYevsYUR0t4kb1gAlo241I3hd3qxiMLG7U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "e3072206-01d9-42aa-af0c-37eb2466f8c7 1/22/2021 8:30:14 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e3072206-01d9-42aa-af0c-37eb2466f8c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "09d1ee15-943d-478d-8cfc-8fdaf46fb01e" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083014Z:09d1ee15-943d-478d-8cfc-8fdaf46fb01e" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:13 GMT" + ], + "Content-Length": [ + "1125" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"name\": \"f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"sourceFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"test-policy\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6491053f-a444-4fcd-a0d0-47aef45a3370" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "6491053f-a444-4fcd-a0d0-47aef45a3370 1/22/2021 8:30:14 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "6491053f-a444-4fcd-a0d0-47aef45a3370" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "5413ccdf-9fcb-40ab-9dfa-668c91702543" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083015Z:5413ccdf-9fcb-40ab-9dfa-668c91702543" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:15 GMT" + ], + "Content-Length": [ + "262501" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/b49a700e-5be8-11eb-a6c3-0050568657ef\",\r\n \"name\": \"b49a700e-5be8-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"mmmVm103\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/c051d3c2-5bf1-11eb-a6c3-0050568657ef\",\r\n \"name\": \"c051d3c2-5bf1-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AppMod-rhel\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/c184a502-5c21-11eb-a6c3-0050568657ef\",\r\n \"name\": \"c184a502-5c21-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"sharrai-vm3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.168.197\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/c186ed10-5c21-11eb-a6c3-0050568657ef\",\r\n \"name\": \"c186ed10-5c21-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"sharrai-vm2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.168.133\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/ea976886-5be1-11eb-a6c3-0050568657ef\",\r\n \"name\": \"ea976886-5be1-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"sharrai-rcmapp\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.128\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9603ab7-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9603ab7-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"New_Virtual_Machine_12\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.158\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f96437b7-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f96437b7-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"singhabh_v2arcmapp\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"OTHER\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.187\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f967ea51-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f967ea51-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"NewVirtualMachineAbhishek\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.244\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f969756a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f969756a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"shaaggar-v2acs\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.213\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f96b6e8a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f96b6e8a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"ev2a-wcus-s\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.243\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f96ccf54-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f96ccf54-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"singhabh-cbtappliance\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"OTHER\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.168\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f96eda2d-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f96eda2d-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"ev2a-l-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.209.193\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9705a15-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9705a15-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"singhabh-testvm\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f971ea2a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f971ea2a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Contoso-CS-ReadyDemoDND\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f992cfc1-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f992cfc1-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"acsource1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.155\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f994f5eb-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f994f5eb-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"pod-gql-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.106\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9968152-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9968152-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"H2AOnebox\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9981d69-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9981d69-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"B2AOnebox\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.1.156\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f999a843-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f999a843-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"ev2a-w12-efi\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.191\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f99b2cf2-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f99b2cf2-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"UBunut1804-mpk\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.209.206\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f99d742d-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f99d742d-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"acsource2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.193\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f99fb39f-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f99fb39f-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"anvarMnVM\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9a18b34-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9a18b34-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"ev2a-cs-5\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.14\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9a33737-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9a33737-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"V2AOnebox\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9a4edd3-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9a4edd3-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"at-win-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9a7f91e-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9a7f91e-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Win12\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9aa4011-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9aa4011-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Win11\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9ac67ee-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9ac67ee-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"v2a-gip-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.209.233\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9ae18f2-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9ae18f2-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Win10\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9b046c0-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9b046c0-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"singhabh-v2arcmapp\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.174\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9b1d0cc-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9b1d0cc-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linmt02\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.209.244\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9b46100-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9b46100-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"v2a-GIP-AC-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.167\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9b5d4f1-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9b5d4f1-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AGVMMBox\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9b79cca-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9b79cca-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxRHEL-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.0.54\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9ba05be-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9ba05be-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"winmt01\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.218\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9bce452-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9bce452-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"mmmApp100\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.168.192\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9be6b81-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9be6b81-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Ayan-RCM-Cent7\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.95\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9bfe432-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9bfe432-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Ayan-RCM-AppTest\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.168.109\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9c1d86a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9c1d86a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"sharrai-vm1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.121\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9c4b4b4-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9c4b4b4-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vipenmet-csp6\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.168.111\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9c6368b-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9c6368b-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vipenmet-csp5\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.142\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9c7cdea-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9c7cdea-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vipenmet-csp4\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.171\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9c9d044-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9c9d044-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-rhel7u7-01\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9cb5f29-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9cb5f29-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-centos6u6-02\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.162\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9cd5fe8-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9cd5fe8-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"mmmVm102\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9d0f3b6-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9d0f3b6-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-ubl1404-01\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9d2de31-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9d2de31-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Linx-FB-MT\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9d448d5-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9d448d5-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"mmmVm101\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9d5da0a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9d5da0a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vipenmet-cs1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"OTHER\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9d7563f-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9d7563f-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Ayan-RCM-Cent7-T1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.127\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9d9b383-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9d9b383-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-win2k16\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.172\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9db67f7-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9db67f7-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-centos6u6-01\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9dd2bc9-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9dd2bc9-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-win2k12r2-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e0a0ed-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9e0a0ed-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-Win2k12R2-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"169.254.1.246\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e21ac4-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9e21ac4-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-win2k12r2-02\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.168.154\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e49fa6-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9e49fa6-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vijamiCSNew\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"Installed\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78156\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM Role can not be protected.\",\r\n \"possibleCauses\": \"VM contains role as Master target/Process server that can't be protected.\",\r\n \"recommendedAction\": \"Uninstall the mobility agent on VM and retry the operation.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e6cfaa-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9e6cfaa-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"MSW12R2-03\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vi-win-vm-new\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": \"dd59b840-5891-489e-9e70-1d33c01d6f3e\",\r\n \"agentInstalled\": \"Installed\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"ipAddress\": \"10.150.168.181\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"diskName\": \"\\\\\\\\.\\\\PHYSICALDRIVE0\",\r\n \"diskSizeInMB\": \"40960\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"diskConfiguration\": \"Basic\",\r\n \"volumeList\": [\r\n {\r\n \"label\": \"\",\r\n \"name\": \"C\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9ea4b2f-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9ea4b2f-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-rhel7u7-02\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9ec5566-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9ec5566-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-rhel6u6-02\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9edfd00-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9edfd00-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"MSW12R2-01\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"169.254.68.0\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9f0ebcf-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9f0ebcf-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-rhel6u6-01\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9f59ac5-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9f59ac5-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-Win2k8r2-cv2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9fcb302-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9fcb302-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"MSW12R2-02\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9ff8ae8-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9ff8ae8-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"SS-VCVT-19DC\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.0.166\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa017564-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa017564-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"SS-VCVT-16DC\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.0.151\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa038380-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa038380-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"SS-VCVT-12STD\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.0.82\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa233735-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa233735-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"SS-VCVT-12R2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.183\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa257ac7-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa257ac7-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-dyn-storvsc\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa270052-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa270052-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"SS-VCVT-12DC\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.139\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa28a97d-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa28a97d-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-nohyd2k8r2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa2ac570-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa2ac570-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-san-test-Ps\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa2c65eb-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa2c65eb-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"SS-CVT-WK8R2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.42\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa2e7058-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa2e7058-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-san2k12r2v1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa308d98-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa308d98-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"SS-VCVT-8\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.141\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa323067-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa323067-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-spool-2k12r2-org\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.0.106\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa341a5a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa341a5a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-spool-2k12r2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa3670c4-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa3670c4-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-inm67-w2k8x86sp2-dc\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa380aad-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa380aad-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"win2k8net35\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa39928c-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa39928c-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-ovacs\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa3bdd8b-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa3bdd8b-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-2k8r2-net35\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa3d801b-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa3d801b-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linux1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa3f8ba8-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa3f8ba8-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"win2019standard\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa41503e-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa41503e-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"win2k8r2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa43ff1c-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa43ff1c-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"ContainerizeAppsHelperVM\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.152\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa45d32d-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa45d32d-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AirsonicDemoWebserver\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa480bb6-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa480bb6-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-c6\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa49935a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa49935a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"cvs12-1v\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"OTHER\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa4b1cb1-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa4b1cb1-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u18-4\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa4d1981-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa4d1981-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u18-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.61\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa4f4549-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa4f4549-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"cvMT\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa50d2fa-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa50d2fa-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u18-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa5269c3-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa5269c3-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u18-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa542e62-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa542e62-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AirsonicDemoMysqlserver\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa563359-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa563359-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linux-walmart-mt\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa57cb81-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa57cb81-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-c7-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa5964e2-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa5964e2-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-c7-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.179\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa5ad609-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa5ad609-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-c7-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa5d374a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa5d374a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u14-5\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.110\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa5ec5b6-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa5ec5b6-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u14-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.103\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa60704a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa60704a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u16-6\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78147\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"IP address not set.\",\r\n \"possibleCauses\": \"There could be MAC address mismatch inside Guest OS and at VMware VM level.\",\r\n \"recommendedAction\": \"Please fix the MAC address mismatch, and re-try.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa625208-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa625208-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u16-4\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.128\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa65062b-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa65062b-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u16-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.120\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa669d06-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa669d06-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-d7-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.0.173\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa68310f-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa68310f-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-c5\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa69b512-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa69b512-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TEST\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa6bd35a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa6bd35a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u14-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.109\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa6d9146-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa6d9146-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"ubuntu-upgrade-16-4-0\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa6f53b8-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa6f53b8-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"ubuntu-upgrade-14-4-0\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa70ec20-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa70ec20-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-wtt\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.68\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa739745-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa739745-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-master\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.0.154\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa7514a4-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa7514a4-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u16-5\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.121\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa76ae75-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa76ae75-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u14-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.104\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa7881dc-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa7881dc-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"cvc8\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa7ae9d1-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa7ae9d1-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u16-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.116\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa7c9829-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa7c9829-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"MigrationStoryAppliance\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa7ee456-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa7ee456-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-d7-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.229\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa80a452-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa80a452-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-test\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.56\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa83c012-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa83c012-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-d9-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa864484-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa864484-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u16-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.228\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa88e015-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa88e015-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-d9-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa8a7176-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa8a7176-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u14-4\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.227\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa8c94f4-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa8c94f4-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u20-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.151\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa8e1915-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa8e1915-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u20-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.112\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa90fd24-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa90fd24-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AppMod-Ubuntu-Mysql\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.89.110\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa92e5a3-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa92e5a3-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"JavaPMSelfHost-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.92.137\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fab52457-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fab52457-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"JavaPMSelfHost-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.92.72\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fab71113-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fab71113-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Rabiswal-Appliance\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.89.14\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fab8f51b-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fab8f51b-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AppMod-centos\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.92.214\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fabaef21-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fabaef21-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RabiswalWinVm3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fabceb15-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fabceb15-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RabiswalRl7U6Vm2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.93.20\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fac22ec1-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fac22ec1-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AppMod-debian\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.89.115\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fac3baca-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fac3baca-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"lshaitestova\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.93.34\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fac5c1c7-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fac5c1c7-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AppMod-ubuntu-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.93.36\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fac7a63a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fac7a63a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"JavaPMSelfHost-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.92.249\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fac96949-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fac96949-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"lshaiamhtest\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"OTHER\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/facb3d11-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"facb3d11-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RabiswalWinVm6\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fade1ea0-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fade1ea0-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"CBTNov\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.88.251\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fae03853-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fae03853-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vmwaresrcvm\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fae1d0fa-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fae1d0fa-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RabiswalWinVm4\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fae353d9-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fae353d9-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RcmGwyOneBox\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fae4f6f6-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fae4f6f6-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"JavaAppDemo\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.92.223\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fae6b29c-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fae6b29c-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RcmSrsOneBox\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fae8c8f3-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fae8c8f3-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RcmOneBox\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/faea63d1-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"faea63d1-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RabiswalOL7U8Vm1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.93.23\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:18:22.066922Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems?api-version=2018-07-10&$skipToken=ReplicationGroup%3ABegin\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems?api-version=2018-07-10&$skipToken=ReplicationGroup%3ABegin", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zP2FwaS12ZXJzaW9uPTIwMTgtMDctMTAmJHNraXBUb2tlbj1SZXBsaWNhdGlvbkdyb3VwJTNBQmVnaW4=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6491053f-a444-4fcd-a0d0-47aef45a3370" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611300615877)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611905415877)\\/\",\"ClientRequestId\":\"2c0ec199-b5e9-4034-a09a-2b815a9c2335-2021-01-22 08:30:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hTKETbUDAnWZpBi302NPNok5q8Um2sP+RDQiEhXMVQQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "6491053f-a444-4fcd-a0d0-47aef45a3370 1/22/2021 8:30:16 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "6491053f-a444-4fcd-a0d0-47aef45a3370" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "6e3b02a7-b71b-46dd-9c3c-f74e899bba04" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083016Z:6e3b02a7-b71b-46dd-9c3c-f74e899bba04" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:16 GMT" + ], + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zL2Y5ZThjNzVjLTViZGEtMTFlYi1hNmMzLTAwNTA1Njg2NTdlZj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6491053f-a444-4fcd-a0d0-47aef45a3370" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611300616622)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611905416622)\\/\",\"ClientRequestId\":\"4829c7c7-cafa-406a-927f-f676aaf194e1-2021-01-22 08:30:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gdKzWyNncOQr2nUtgAZfbFNGrmpHWXv5j1cT5EMjmQw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "6491053f-a444-4fcd-a0d0-47aef45a3370 1/22/2021 8:30:16 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "6491053f-a444-4fcd-a0d0-47aef45a3370" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "551f168f-3aee-4d15-aead-8d8cd5f3ae2a" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083016Z:551f168f-3aee-4d15-aead-8d8cd5f3ae2a" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:16 GMT" + ], + "Content-Length": [ + "1564" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vi-win-vm-new\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": \"dd59b840-5891-489e-9e70-1d33c01d6f3e\",\r\n \"agentInstalled\": \"Installed\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"ipAddress\": \"10.150.168.181\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"diskName\": \"\\\\\\\\.\\\\PHYSICALDRIVE0\",\r\n \"diskSizeInMB\": \"40960\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"diskConfiguration\": \"Basic\",\r\n \"volumeList\": [\r\n {\r\n \"label\": \"\",\r\n \"name\": \"C\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"validationErrors\": []\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy92aS13aW4tdm0/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"masterTargetId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"processServerId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"runAsAccountId\": \"1\",\r\n \"targetAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"targetAzureSubnetId\": \"Subnet-1\",\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"targetAzureVmName\": \"vi-win-vm-new\",\r\n \"logStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Storage/storageAccounts/logstoracc123\",\r\n \"targetAzureV2ResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg\",\r\n \"targetAvailabilityZone\": \"1\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "181b1d8d-e3f6-4a24-a1d6-77c556eef52d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611300617407)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611905417407)\\/\",\"ClientRequestId\":\"86c28078-08ce-4673-8327-264ce18fd410-2021-01-22 08:30:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PjDgWBHLJFVZfFwp7cfvtwkhyy+0WyjHyx4EtRjsD5Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1452" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm/operationresults/25e172ee-0f55-4383-80af-b823d7ddf79b?api-version=2018-07-10" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/25e172ee-0f55-4383-80af-b823d7ddf79b", + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/25e172ee-0f55-4383-80af-b823d7ddf79b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationOperationStatus/25e172ee-0f55-4383-80af-b823d7ddf79b?api-version=2018-07-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "181b1d8d-e3f6-4a24-a1d6-77c556eef52d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "6f6fee54-e58f-46b5-8ad6-128a11f80a55" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083019Z:6f6fee54-e58f-46b5-8ad6-128a11f80a55" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/25e172ee-0f55-4383-80af-b823d7ddf79b?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Kb2JzLzI1ZTE3MmVlLTBmNTUtNDM4My04MGFmLWI4MjNkN2RkZjc5Yj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "181b1d8d-e3f6-4a24-a1d6-77c556eef52d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611300619698)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611905419698)\\/\",\"ClientRequestId\":\"59901bfb-20ae-47cd-95e6-cd0a0f96f4ea-2021-01-22 08:30:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iJUd6tdhz2vZpwNwkPOW41G4ahvKz13sQXimvh1+j9c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/25e172ee-0f55-4383-80af-b823d7ddf79b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "181b1d8d-e3f6-4a24-a1d6-77c556eef52d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "64c298f2-0905-451d-8a06-359135b0bf8d" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T083019Z:64c298f2-0905-451d-8a06-359135b0bf8d" + ], + "Date": [ + "Fri, 22 Jan 2021 08:30:19 GMT" + ], + "Content-Length": [ + "3371" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/25e172ee-0f55-4383-80af-b823d7ddf79b\",\r\n \"name\": \"25e172ee-0f55-4383-80af-b823d7ddf79b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"181b1d8d-e3f6-4a24-a1d6-77c556eef52d ActivityId: 6f6fee54-e58f-46b5-8ad6-128a11f80a55\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\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-01-22T08:30:19.1927804Z\",\r\n \"endTime\": \"2021-01-22T08:30:19.6731503Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\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-01-22T08:30:19.6731503Z\",\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-01-22T08:30:18.9843737Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"targetObjectName\": \"vi-win-vm-new\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"primaryVmName\": \"vi-win-vm-new\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"vi-win-vm-new\",\r\n \"protectionProfileId\": \"efede9dc-b50e-5723-93e9-4bd8604069c5\",\r\n \"primaryCloudId\": \"cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryCloudName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryVmmName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"VMware\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c" + } +} \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrV2ATests/V2ACreateRPIWithPPG.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrV2ATests/V2ACreateRPIWithPPG.json new file mode 100644 index 000000000000..27b6c476ea83 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrV2ATests/V2ACreateRPIWithPPG.json @@ -0,0 +1,1128 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "722b48e4-be87-42c8-91ca-63ad0acdd617" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.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-ms-original-request-ids": [ + "6c3233b8-a40f-4094-9832-0981713ec694", + "6c3233b8-a40f-4094-9832-0981713ec694" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "6c3233b8-a40f-4094-9832-0981713ec694" + ], + "x-ms-correlation-request-id": [ + "6c3233b8-a40f-4094-9832-0981713ec694" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054000Z:6c3233b8-a40f-4094-9832-0981713ec694" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1374" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidyavault\",\r\n \"etag\": \"W/\\\"datetime'2021-01-22T05%3A15%3A43.2034947Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vijamivault\",\r\n \"etag\": \"W/\\\"datetime'2021-01-19T08%3A03%3A26.3037424Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vijamivault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testvault\",\r\n \"etag\": \"W/\\\"datetime'2021-01-15T04%3A31%3A48.0780041Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/testvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62bef24b-d5de-4137-921f-f759519a68ad" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611290400202)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611895200202)\\/\",\"ClientRequestId\":\"1022089d-f426-4b7a-928d-e6b2c4402a87-2021-01-22 05:40:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"V1tUqoqwHyNCl4grJ7FelroaBIa9viJuzMU/kn+J2oI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "62bef24b-d5de-4137-921f-f759519a68ad 1/22/2021 5:40:01 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "62bef24b-d5de-4137-921f-f759519a68ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "8dab7059-db2e-4cbf-94e7-a778dbf5deac" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054001Z:8dab7059-db2e-4cbf-94e7-a778dbf5deac" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:01 GMT" + ], + "Content-Length": [ + "9413" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"hyperv\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/hyperv\",\r\n \"properties\": {\r\n \"friendlyName\": \"hyperv\",\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\": \"46e5f324-c3fa-508e-8a90-a3232d20dce0\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"properties\": {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\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\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T05:37:33Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"machineCount\": \"0\",\r\n \"replicationPairCount\": \"0\",\r\n \"systemLoad\": \"7\",\r\n \"systemLoadStatus\": \"Yellow\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2534466640,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24534151850,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:54Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"osVersion\": null,\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"health\": \"Critical\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2021-01-22T05:36:46Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 0,\r\n \"throughputInBytes\": 0,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": null,\r\n \"marsRegistrationStatus\": null\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"name\": \"WIN-B6L6OJO1E6Q\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T05:36:30Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"retentionVolumes\": [],\r\n \"dataStores\": [\r\n {\r\n \"symbolicName\": \"datastore1\",\r\n \"uuid\": \"5fda103a-1a1e7a80-f1bd-4cd98f63b7b7\",\r\n \"capacity\": \"550.75\",\r\n \"freeSpace\": \"206.12\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"datastore78-ext2\",\r\n \"uuid\": \"5de660af-54cd74db-e392-f8bc124d6486\",\r\n \"capacity\": \"5119.75\",\r\n \"freeSpace\": \"419.13\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"Newdatastore\",\r\n \"uuid\": \"5fe1f478-e5a7e09a-702b-4cd98f63b7b7\",\r\n \"capacity\": \"3071.75\",\r\n \"freeSpace\": \"568.4\",\r\n \"type\": \"VMFS\"\r\n }\r\n ],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"diskCount\": 1,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"marsAgentVersion\": \"2.0.9165.0\",\r\n \"marsAgentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9165.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [\r\n {\r\n \"accountId\": \"1\",\r\n \"accountName\": \"winacc\"\r\n },\r\n {\r\n \"accountId\": \"2\",\r\n \"accountName\": \"vcenteracc\"\r\n }\r\n ],\r\n \"replicationPairCount\": \"0\",\r\n \"processServerCount\": \"1\",\r\n \"agentCount\": \"1\",\r\n \"protectedServers\": \"0\",\r\n \"systemLoad\": \"7\",\r\n \"systemLoadStatus\": \"Yellow\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2534466640,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24534151850,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"hostName\": \"WIN-B6L6OJO1E6Q\",\r\n \"lastHeartbeat\": \"2021-01-22T05:37:35.8733062Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:53Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"psTemplateVersion\": \"202101.07.00\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"ConfigurationServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"816\",\r\n \"summaryMessage\": \"Configuration server or Azure Site Recovery Provider version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Configuration Server or Azure Site Recovery Provider ended on (01/01/0001). The service is currently running with limited functionality, upgrade Configuration Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Configuration Server or Azure Site Recovery Provider has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Configuration Server or Azure Site Recovery Provider now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4698556Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTg/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62bef24b-d5de-4137-921f-f759519a68ad" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611290401824)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611895201824)\\/\",\"ClientRequestId\":\"6bcd8cbe-aa31-4ac4-81b2-72e731b8fa27-2021-01-22 05:40:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YYU2QtlWfUrLgnH5BDILYpp4tN+X7ddVHR34sd5gi4I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "62bef24b-d5de-4137-921f-f759519a68ad 1/22/2021 5:40:02 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "62bef24b-d5de-4137-921f-f759519a68ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "f67b0dce-6b0a-4889-a7b0-481396ec20f2" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054002Z:f67b0dce-6b0a-4889-a7b0-481396ec20f2" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:01 GMT" + ], + "Content-Length": [ + "8769" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"properties\": {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\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\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T05:37:33Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"machineCount\": \"0\",\r\n \"replicationPairCount\": \"0\",\r\n \"systemLoad\": \"7\",\r\n \"systemLoadStatus\": \"Yellow\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2534466640,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24534151850,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:54Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"osVersion\": null,\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"health\": \"Critical\",\r\n \"psStatsRefreshTime\": \"2021-01-22T05:36:46Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 0,\r\n \"throughputInBytes\": 0,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": null,\r\n \"marsRegistrationStatus\": null\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"name\": \"WIN-B6L6OJO1E6Q\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T05:36:30Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"retentionVolumes\": [],\r\n \"dataStores\": [\r\n {\r\n \"symbolicName\": \"datastore1\",\r\n \"uuid\": \"5fda103a-1a1e7a80-f1bd-4cd98f63b7b7\",\r\n \"capacity\": \"550.75\",\r\n \"freeSpace\": \"206.12\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"datastore78-ext2\",\r\n \"uuid\": \"5de660af-54cd74db-e392-f8bc124d6486\",\r\n \"capacity\": \"5119.75\",\r\n \"freeSpace\": \"419.13\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"Newdatastore\",\r\n \"uuid\": \"5fe1f478-e5a7e09a-702b-4cd98f63b7b7\",\r\n \"capacity\": \"3071.75\",\r\n \"freeSpace\": \"568.4\",\r\n \"type\": \"VMFS\"\r\n }\r\n ],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"diskCount\": 1,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"marsAgentVersion\": \"2.0.9165.0\",\r\n \"marsAgentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9165.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [\r\n {\r\n \"accountId\": \"1\",\r\n \"accountName\": \"winacc\"\r\n },\r\n {\r\n \"accountId\": \"2\",\r\n \"accountName\": \"vcenteracc\"\r\n }\r\n ],\r\n \"replicationPairCount\": \"0\",\r\n \"processServerCount\": \"1\",\r\n \"agentCount\": \"1\",\r\n \"protectedServers\": \"0\",\r\n \"systemLoad\": \"7\",\r\n \"systemLoadStatus\": \"Yellow\",\r\n \"cpuLoad\": \"0%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2534466640,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24534151850,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"hostName\": \"WIN-B6L6OJO1E6Q\",\r\n \"lastHeartbeat\": \"2021-01-22T05:37:35.8733062Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:53Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"psTemplateVersion\": \"202101.07.00\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"ConfigurationServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"816\",\r\n \"summaryMessage\": \"Configuration server or Azure Site Recovery Provider version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Configuration Server or Azure Site Recovery Provider ended on (01/01/0001). The service is currently running with limited functionality, upgrade Configuration Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Configuration Server or Azure Site Recovery Provider has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Configuration Server or Azure Site Recovery Provider now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4698556Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18359a55-5ab1-487c-84a9-fb37e22617a6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611290402200)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611895202200)\\/\",\"ClientRequestId\":\"ec67a243-b976-45b1-9032-bfe2e90b8aed-2021-01-22 05:40:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wA/GVLHPCBwmOWg/HeX/Gb/C8SpGAkvme3/sNisM2Z0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "18359a55-5ab1-487c-84a9-fb37e22617a6 1/22/2021 5:40:02 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "18359a55-5ab1-487c-84a9-fb37e22617a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "992339ad-a709-4b31-8904-7184d20c846b" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054002Z:992339ad-a709-4b31-8904-7184d20c846b" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:02 GMT" + ], + "Content-Length": [ + "676" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"name\": \"cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"fabricType\": \"VMware\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2Y/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18359a55-5ab1-487c-84a9-fb37e22617a6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611290402564)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611895202564)\\/\",\"ClientRequestId\":\"b89e2ba1-edce-45b5-a1e4-9028f05e8d9d-2021-01-22 05:40:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7rENR1IiHzCZanVyjK8OdCd2xd8cxQmPdE2wanK69/c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "18359a55-5ab1-487c-84a9-fb37e22617a6 1/22/2021 5:40:02 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "18359a55-5ab1-487c-84a9-fb37e22617a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "d0c2959a-93d6-4f55-aa99-986df150de98" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054002Z:d0c2959a-93d6-4f55-aa99-986df150de98" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:02 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"name\": \"cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"fabricType\": \"VMware\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18359a55-5ab1-487c-84a9-fb37e22617a6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611290402919)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611895202919)\\/\",\"ClientRequestId\":\"3969ff2b-0460-4b54-8081-12157a78083d-2021-01-22 05:40:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5PmdvfTLKxtFRKmMYjqXFVeUwf2sonnvfuLjKvJ7gME=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "18359a55-5ab1-487c-84a9-fb37e22617a6 1/22/2021 5:40:03 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "18359a55-5ab1-487c-84a9-fb37e22617a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "6e669a5b-1a40-4a89-bb6f-957769b3f94c" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054003Z:6e669a5b-1a40-4a89-bb6f-957769b3f94c" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:02 GMT" + ], + "Content-Length": [ + "2572" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/ae9dfb2d-7c1b-4df9-8947-b742d6172721\",\r\n \"name\": \"ae9dfb2d-7c1b-4df9-8947-b742d6172721\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"targetProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy-failback\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"sourceFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"targetFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"policyFriendlyName\": \"test-policy-failback\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"name\": \"f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"sourceFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"test-policy\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy-failback?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Qb2xpY2llcy90ZXN0LXBvbGljeS1mYWlsYmFjaz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18359a55-5ab1-487c-84a9-fb37e22617a6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611290403313)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611895203313)\\/\",\"ClientRequestId\":\"9aa3d625-2995-4dcf-8796-0c09596addab-2021-01-22 05:40:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"79YSBsWoWVmcYqJHPbGsqdOXKwCMhuprRmNS+ciYrWk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "18359a55-5ab1-487c-84a9-fb37e22617a6 1/22/2021 5:40:03 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "18359a55-5ab1-487c-84a9-fb37e22617a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "0611f168-056a-4ff8-930d-abc79663780f" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054003Z:0611f168-056a-4ff8-930d-abc79663780f" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:03 GMT" + ], + "Content-Length": [ + "511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy-failback\",\r\n \"name\": \"test-policy-failback\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy-failback\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMage\",\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Qb2xpY2llcy90ZXN0LXBvbGljeT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "18359a55-5ab1-487c-84a9-fb37e22617a6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611290403654)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611895203654)\\/\",\"ClientRequestId\":\"2b0a1a8a-a467-40d4-a738-04f609e37168-2021-01-22 05:40:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dOmTD/lHvw2Kv59vy+lObXRDN/2o9/Ns5qJB0pciHdk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "18359a55-5ab1-487c-84a9-fb37e22617a6 1/22/2021 5:40:03 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "18359a55-5ab1-487c-84a9-fb37e22617a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "4c7e193d-13b1-4072-8e4d-de02e99f5c53" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054003Z:4c7e193d-13b1-4072-8e4d-de02e99f5c53" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:03 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"name\": \"test-policy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Qb2xpY2llcy90ZXN0LXBvbGljeT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4eaef6c4-d395-4511-b2dd-c04a0f2f7acf" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611290403958)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611895203958)\\/\",\"ClientRequestId\":\"65fe93e1-6a58-4f4a-8f11-956bc91b5877-2021-01-22 05:40:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mW+POqhsMpWTFNtJGga6I26QM52NHqU8EtYX5iN+lw0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "4eaef6c4-d395-4511-b2dd-c04a0f2f7acf 1/22/2021 5:40:04 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4eaef6c4-d395-4511-b2dd-c04a0f2f7acf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "ca352339-866f-4ab7-8865-233510a78efa" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054004Z:ca352339-866f-4ab7-8865-233510a78efa" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:03 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"name\": \"test-policy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Qb2xpY2llcy90ZXN0LXBvbGljeT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2053a94c-b7e9-4d93-bb85-e215aa9ba2d6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611290406697)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611895206697)\\/\",\"ClientRequestId\":\"95a3105e-9302-41ab-9a9d-73b61ca8567e-2021-01-22 05:40:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"J15QIPUunICc+1z4rGHLsBjN9Hx36iBverQWYzXoNBI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "2053a94c-b7e9-4d93-bb85-e215aa9ba2d6 1/22/2021 5:40:06 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "2053a94c-b7e9-4d93-bb85-e215aa9ba2d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "665626aa-8070-4cbf-8e0d-c90c558bcb7a" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054006Z:665626aa-8070-4cbf-8e0d-c90c558bcb7a" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:06 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"name\": \"test-policy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/f858b936-ee57-44c4-9ff9-2907d418fbd2?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvZjg1OGI5MzYtZWU1Ny00NGM0LTlmZjktMjkwN2Q0MThmYmQyP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b9c2234e-0bb7-43a6-89b3-e1ef5185db21" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611290404260)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611895204260)\\/\",\"ClientRequestId\":\"299eca61-8f67-41e2-bb5e-da5e16fec7b8-2021-01-22 05:40:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yanucR/kPSRi2sJ+GHsEYtKhzi1DYK88X3MwlWgrfBo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "b9c2234e-0bb7-43a6-89b3-e1ef5185db21 1/22/2021 5:40:04 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b9c2234e-0bb7-43a6-89b3-e1ef5185db21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "49a5d84b-15b7-4730-9024-47c41b286c97" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054004Z:49a5d84b-15b7-4730-9024-47c41b286c97" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:04 GMT" + ], + "Content-Length": [ + "1125" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"name\": \"f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"sourceFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"test-policy\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "968d0d0a-5d7b-4c94-93b4-804517faad09" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "968d0d0a-5d7b-4c94-93b4-804517faad09 1/22/2021 5:40:04 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "968d0d0a-5d7b-4c94-93b4-804517faad09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "14f57dbe-e478-4c92-9f9d-61f8c92cddc3" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054005Z:14f57dbe-e478-4c92-9f9d-61f8c92cddc3" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:05 GMT" + ], + "Content-Length": [ + "261563" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/b49a700e-5be8-11eb-a6c3-0050568657ef\",\r\n \"name\": \"b49a700e-5be8-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"mmmVm103\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/c051d3c2-5bf1-11eb-a6c3-0050568657ef\",\r\n \"name\": \"c051d3c2-5bf1-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AppMod-rhel\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/c184a502-5c21-11eb-a6c3-0050568657ef\",\r\n \"name\": \"c184a502-5c21-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"sharrai-vm3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/c186ed10-5c21-11eb-a6c3-0050568657ef\",\r\n \"name\": \"c186ed10-5c21-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"sharrai-vm2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/ea976886-5be1-11eb-a6c3-0050568657ef\",\r\n \"name\": \"ea976886-5be1-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"sharrai-rcmapp\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.128\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9603ab7-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9603ab7-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"New_Virtual_Machine_12\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.158\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f96437b7-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f96437b7-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"singhabh_v2arcmapp\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"OTHER\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.187\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f967ea51-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f967ea51-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"NewVirtualMachineAbhishek\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.244\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f969756a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f969756a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"shaaggar-v2acs\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.213\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f96b6e8a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f96b6e8a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"ev2a-wcus-s\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f96ccf54-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f96ccf54-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"singhabh-cbtappliance\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"OTHER\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.168\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f96eda2d-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f96eda2d-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"ev2a-l-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9705a15-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9705a15-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"singhabh-testvm\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f971ea2a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f971ea2a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Contoso-CS-ReadyDemoDND\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f992cfc1-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f992cfc1-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"acsource1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.155\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f994f5eb-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f994f5eb-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"pod-gql-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.106\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9968152-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9968152-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"H2AOnebox\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9981d69-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9981d69-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"B2AOnebox\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.1.156\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f999a843-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f999a843-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"ev2a-w12-efi\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f99b2cf2-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f99b2cf2-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"UBunut1804-mpk\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.209.206\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f99d742d-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f99d742d-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"acsource2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.193\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f99fb39f-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f99fb39f-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"anvarMnVM\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9a18b34-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9a18b34-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"ev2a-cs-5\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.14\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9a33737-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9a33737-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"V2AOnebox\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9a4edd3-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9a4edd3-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"at-win-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9a7f91e-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9a7f91e-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Win12\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9aa4011-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9aa4011-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Win11\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9ac67ee-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9ac67ee-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"v2a-gip-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.209.233\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9ae18f2-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9ae18f2-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Win10\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9b046c0-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9b046c0-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"singhabh-v2arcmapp\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.174\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9b1d0cc-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9b1d0cc-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linmt02\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.209.244\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9b46100-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9b46100-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"v2a-GIP-AC-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.167\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9b5d4f1-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9b5d4f1-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AGVMMBox\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9b79cca-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9b79cca-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxRHEL-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.0.54\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9ba05be-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9ba05be-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"winmt01\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.218\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9bce452-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9bce452-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"mmmApp100\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.168.192\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9be6b81-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9be6b81-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Ayan-RCM-Cent7\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.95\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9bfe432-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9bfe432-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Ayan-RCM-AppTest\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.168.109\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9c1d86a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9c1d86a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"sharrai-vm1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.121\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9c4b4b4-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9c4b4b4-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vipenmet-csp6\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.168.111\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9c6368b-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9c6368b-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vipenmet-csp5\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.142\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9c7cdea-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9c7cdea-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vipenmet-csp4\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.171\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9c9d044-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9c9d044-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-rhel7u7-01\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9cb5f29-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9cb5f29-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-centos6u6-02\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.162\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9cd5fe8-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9cd5fe8-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"mmmVm102\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9d0f3b6-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9d0f3b6-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-ubl1404-01\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9d2de31-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9d2de31-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Linx-FB-MT\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9d448d5-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9d448d5-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"mmmVm101\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9d5da0a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9d5da0a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vipenmet-cs1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"OTHER\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9d7563f-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9d7563f-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Ayan-RCM-Cent7-T1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.127\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9d9b383-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9d9b383-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-win2k16\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.172.172\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9db67f7-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9db67f7-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-centos6u6-01\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9dd2bc9-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9dd2bc9-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-win2k12r2-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e0a0ed-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9e0a0ed-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-Win2k12R2-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"169.254.1.246\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e21ac4-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9e21ac4-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-win2k12r2-02\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.168.154\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e49fa6-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9e49fa6-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vijamiCSNew\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"Installed\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78156\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM Role can not be protected.\",\r\n \"possibleCauses\": \"VM contains role as Master target/Process server that can't be protected.\",\r\n \"recommendedAction\": \"Uninstall the mobility agent on VM and retry the operation.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e6cfaa-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9e6cfaa-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"MSW12R2-03\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vi-win-vm-new\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": \"dd59b840-5891-489e-9e70-1d33c01d6f3e\",\r\n \"agentInstalled\": \"Installed\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"ipAddress\": \"10.150.168.181\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"diskName\": \"\\\\\\\\.\\\\PHYSICALDRIVE0\",\r\n \"diskSizeInMB\": \"40960\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"diskConfiguration\": \"Basic\",\r\n \"volumeList\": [\r\n {\r\n \"label\": \"\",\r\n \"name\": \"C\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9ea4b2f-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9ea4b2f-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-rhel7u7-02\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9ec5566-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9ec5566-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-rhel6u6-02\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9edfd00-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9edfd00-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"MSW12R2-01\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"169.254.68.0\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9f0ebcf-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9f0ebcf-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-rhel6u6-01\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9f59ac5-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9f59ac5-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vis-Win2k8r2-cv2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9fcb302-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9fcb302-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"MSW12R2-02\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9ff8ae8-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9ff8ae8-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"SS-VCVT-19DC\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.0.166\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa017564-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa017564-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"SS-VCVT-16DC\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.0.151\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa038380-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa038380-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"SS-VCVT-12STD\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.0.82\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa233735-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa233735-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"SS-VCVT-12R2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.183\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa257ac7-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa257ac7-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-dyn-storvsc\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa270052-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa270052-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"SS-VCVT-12DC\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.139\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa28a97d-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa28a97d-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-nohyd2k8r2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa2ac570-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa2ac570-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-san-test-Ps\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa2c65eb-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa2c65eb-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"SS-CVT-WK8R2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.42\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa2e7058-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa2e7058-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-san2k12r2v1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa308d98-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa308d98-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"SS-VCVT-8\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.141\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa323067-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa323067-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-spool-2k12r2-org\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.0.106\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa341a5a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa341a5a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-spool-2k12r2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa3670c4-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa3670c4-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-inm67-w2k8x86sp2-dc\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa380aad-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa380aad-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"win2k8net35\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa39928c-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa39928c-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-ovacs\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa3bdd8b-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa3bdd8b-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"saku-2k8r2-net35\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa3d801b-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa3d801b-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linux1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa3f8ba8-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa3f8ba8-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"win2019standard\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa41503e-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa41503e-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"win2k8r2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa43ff1c-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa43ff1c-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"ContainerizeAppsHelperVM\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.152\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa45d32d-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa45d32d-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AirsonicDemoWebserver\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa480bb6-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa480bb6-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-c6\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.94\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa49935a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa49935a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"cvs12-1v\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"OTHER\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa4b1cb1-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa4b1cb1-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u18-4\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.67\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa4d1981-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa4d1981-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u18-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.61\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa4f4549-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa4f4549-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"cvMT\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa50d2fa-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa50d2fa-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u18-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.66\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa5269c3-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa5269c3-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u18-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.59\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa542e62-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa542e62-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AirsonicDemoMysqlserver\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa563359-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa563359-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linux-walmart-mt\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa57cb81-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa57cb81-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-c7-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.49\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa5964e2-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa5964e2-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-c7-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.179\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa5ad609-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa5ad609-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-c7-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.175\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa5d374a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa5d374a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u14-5\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.110\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa5ec5b6-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa5ec5b6-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u14-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.103\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa60704a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa60704a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u16-6\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78147\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"IP address not set.\",\r\n \"possibleCauses\": \"There could be MAC address mismatch inside Guest OS and at VMware VM level.\",\r\n \"recommendedAction\": \"Please fix the MAC address mismatch, and re-try.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa625208-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa625208-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u16-4\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.128\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa65062b-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa65062b-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u16-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.120\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa669d06-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa669d06-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-d7-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.0.173\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa68310f-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa68310f-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-c5\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.22\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa69b512-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa69b512-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"TEST\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa6bd35a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa6bd35a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u14-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.109\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa6d9146-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa6d9146-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"ubuntu-upgrade-16-4-0\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa6f53b8-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa6f53b8-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"ubuntu-upgrade-14-4-0\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa70ec20-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa70ec20-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-wtt\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.68\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa739745-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa739745-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-master\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.0.154\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa7514a4-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa7514a4-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u16-5\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.121\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa76ae75-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa76ae75-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u14-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.104\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa7881dc-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa7881dc-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"cvc8\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa7ae9d1-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa7ae9d1-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u16-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.116\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa7c9829-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa7c9829-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"MigrationStoryAppliance\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa7ee456-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa7ee456-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-d7-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.229\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa80a452-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa80a452-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-test\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.56\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa83c012-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa83c012-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-d9-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa864484-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa864484-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u16-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.228\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa88e015-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa88e015-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-d9-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78146\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VMware tools are not running.\",\r\n \"possibleCauses\": \"Either VMware tools are not installed or stopped inside Guest VM.\",\r\n \"recommendedAction\": \"Install the VMware tools and make sure that VMware tools service is running.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa8a7176-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa8a7176-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u14-4\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.227\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa8c94f4-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa8c94f4-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u20-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.151\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa8e1915-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa8e1915-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"linuxcvt-u20-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.208.112\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7326944Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa90fd24-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa90fd24-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AppMod-Ubuntu-Mysql\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.89.110\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fa92e5a3-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fa92e5a3-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"JavaPMSelfHost-3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.92.137\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fab52457-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fab52457-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"JavaPMSelfHost-2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.92.72\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fab71113-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fab71113-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"Rabiswal-Appliance\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.89.14\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fab8f51b-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fab8f51b-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AppMod-centos\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.92.214\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fabaef21-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fabaef21-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RabiswalWinVm3\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fabceb15-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fabceb15-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RabiswalRl7U6Vm2\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.93.20\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fac22ec1-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fac22ec1-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AppMod-debian\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.89.115\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78151\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"Linux Mastertarget having unsupported SCSI controller type.\",\r\n \"possibleCauses\": \"Linux MT having the SCSI controller other than LsiLogicParallelController.\",\r\n \"recommendedAction\": \"Change the controller types to LsiLogicParallelController.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fac3baca-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fac3baca-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"lshaitestova\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.93.34\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fac5c1c7-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fac5c1c7-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"AppMod-ubuntu-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.93.36\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fac7a63a-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fac7a63a-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"JavaPMSelfHost-1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.92.249\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fac96949-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fac96949-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"lshaiamhtest\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"OTHER\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/facb3d11-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"facb3d11-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RabiswalWinVm6\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fade1ea0-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fade1ea0-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"CBTNov\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.88.251\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fae03853-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fae03853-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vmwaresrcvm\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fae1d0fa-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fae1d0fa-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RabiswalWinVm4\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fae353d9-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fae353d9-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RcmGwyOneBox\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fae4f6f6-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fae4f6f6-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"JavaAppDemo\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.92.223\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78152\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM property Disk enable uuid is not set to True.\",\r\n \"possibleCauses\": \"disk.enableUUID not set True for VMware Master target.\",\r\n \"recommendedAction\": \"Set the disk.enableUUID property to True in VM advanced configuration settings.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fae6b29c-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fae6b29c-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RcmSrsOneBox\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/fae8c8f3-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"fae8c8f3-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RcmOneBox\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"\",\r\n \"poweredOn\": \"Off\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"78145\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM is Powered off.\",\r\n \"possibleCauses\": \"VM is Powered off.\",\r\n \"recommendedAction\": \"Power on the on-prem VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/faea63d1-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"faea63d1-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"RabiswalOL7U8Vm1\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": null,\r\n \"agentInstalled\": \"NotInstalled\",\r\n \"osType\": \"LINUX\",\r\n \"agentVersion\": null,\r\n \"ipAddress\": \"10.150.93.23\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [],\r\n \"validationErrors\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": null,\r\n \"errorCategory\": \"Configuration\",\r\n \"errorCode\": \"78158\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"VM having the snapshots.\",\r\n \"possibleCauses\": \"VM contains snapshots may leads to issues.\",\r\n \"recommendedAction\": \"Consolidate and delete all the snapshots on the VM.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:37:41.7170691Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": null,\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems?api-version=2018-07-10&$skipToken=ReplicationGroup%3ABegin\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems?api-version=2018-07-10&$skipToken=ReplicationGroup%3ABegin", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zP2FwaS12ZXJzaW9uPTIwMTgtMDctMTAmJHNraXBUb2tlbj1SZXBsaWNhdGlvbkdyb3VwJTNBQmVnaW4=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "968d0d0a-5d7b-4c94-93b4-804517faad09" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611290405861)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611895205861)\\/\",\"ClientRequestId\":\"5e15d6b8-d844-4979-8f12-c44b7582cdbd-2021-01-22 05:40:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KzSLyIBKIhDms0Ez+3GKMcmWXFcUPypiyPViB2Gypug=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "968d0d0a-5d7b-4c94-93b4-804517faad09 1/22/2021 5:40:06 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "968d0d0a-5d7b-4c94-93b4-804517faad09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "91846bd6-3278-486b-862e-8dabc9d8ec52" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054006Z:91846bd6-3278-486b-862e-8dabc9d8ec52" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:05 GMT" + ], + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0YWJsZUl0ZW1zL2Y5ZThjNzVjLTViZGEtMTFlYi1hNmMzLTAwNTA1Njg2NTdlZj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "968d0d0a-5d7b-4c94-93b4-804517faad09" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611290406226)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611895206226)\\/\",\"ClientRequestId\":\"1cdd5cca-dc9b-49dd-8dda-3159ac35ea00-2021-01-22 05:40:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xE+AcDUrQujgXWKLSxO80R2fQmAMWnJ9lIHP2I2ozh4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "968d0d0a-5d7b-4c94-93b4-804517faad09 1/22/2021 5:40:06 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "968d0d0a-5d7b-4c94-93b4-804517faad09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "723b8e04-d3f5-4a28-a25d-2368f922dc94" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054006Z:723b8e04-d3f5-4a28-a25d-2368f922dc94" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:06 GMT" + ], + "Content-Length": [ + "1564" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"name\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vi-win-vm-new\",\r\n \"protectionStatus\": \"Unprotected\",\r\n \"replicationProtectedItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"protectionReadinessErrors\": [],\r\n \"supportedReplicationProviders\": [\r\n \"InMage\",\r\n \"InMageAzureV2\"\r\n ],\r\n \"customDetails\": {\r\n \"instanceType\": \"VMwareVirtualMachine\",\r\n \"agentGeneratedId\": \"dd59b840-5891-489e-9e70-1d33c01d6f3e\",\r\n \"agentInstalled\": \"Installed\",\r\n \"osType\": \"WINDOWS\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"ipAddress\": \"10.150.168.181\",\r\n \"poweredOn\": \"On\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"discoveryType\": \"vCenter\",\r\n \"diskDetails\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"diskName\": \"\\\\\\\\.\\\\PHYSICALDRIVE0\",\r\n \"diskSizeInMB\": \"40960\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"diskConfiguration\": \"Basic\",\r\n \"volumeList\": [\r\n {\r\n \"label\": \"\",\r\n \"name\": \"C\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"validationErrors\": []\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy92aS13aW4tdm0/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"masterTargetId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"processServerId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"runAsAccountId\": \"1\",\r\n \"targetAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"targetAzureSubnetId\": \"Subnet-1\",\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"targetAzureVmName\": \"vi-win-vm-new\",\r\n \"logStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Storage/storageAccounts/logstoracc123\",\r\n \"targetAzureV2ResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg\",\r\n \"targetProximityPlacementGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/proximityPlacementGroups/ppgus\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2053a94c-b7e9-4d93-bb85-e215aa9ba2d6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611290406987)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611895206987)\\/\",\"ClientRequestId\":\"99a7c8d0-193f-4c62-a7b2-02b50f874d54-2021-01-22 05:40:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BKEH0ZwaPkaGzwuvU6LxvdwFTNsSODy90JuGSYZo5tA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1595" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm/operationresults/13f4ca27-af64-4b58-a53e-bc49181ee76c?api-version=2018-07-10" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/13f4ca27-af64-4b58-a53e-bc49181ee76c", + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/13f4ca27-af64-4b58-a53e-bc49181ee76c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationOperationStatus/13f4ca27-af64-4b58-a53e-bc49181ee76c?api-version=2018-07-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "2053a94c-b7e9-4d93-bb85-e215aa9ba2d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "857877a9-e2c1-40d3-851d-94d7f336a53f" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054008Z:857877a9-e2c1-40d3-851d-94d7f336a53f" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/13f4ca27-af64-4b58-a53e-bc49181ee76c?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Kb2JzLzEzZjRjYTI3LWFmNjQtNGI1OC1hNTNlLWJjNDkxODFlZTc2Yz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2053a94c-b7e9-4d93-bb85-e215aa9ba2d6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611290409372)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611895209372)\\/\",\"ClientRequestId\":\"dc7147cc-63f9-4d8e-b883-9b5ffa470e23-2021-01-22 05:40:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rj7dCwaBm1YNmggK7cYtiXhzzzpmKqkW9PNjRGhaWK8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/13f4ca27-af64-4b58-a53e-bc49181ee76c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "2053a94c-b7e9-4d93-bb85-e215aa9ba2d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "8f008b8e-1aa3-4ffb-bf69-738a6e9368e4" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T054009Z:8f008b8e-1aa3-4ffb-bf69-738a6e9368e4" + ], + "Date": [ + "Fri, 22 Jan 2021 05:40:08 GMT" + ], + "Content-Length": [ + "3371" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/13f4ca27-af64-4b58-a53e-bc49181ee76c\",\r\n \"name\": \"13f4ca27-af64-4b58-a53e-bc49181ee76c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2053a94c-b7e9-4d93-bb85-e215aa9ba2d6 ActivityId: 857877a9-e2c1-40d3-851d-94d7f336a53f\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\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-01-22T05:40:09.0258339Z\",\r\n \"endTime\": \"2021-01-22T05:40:09.3726959Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\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-01-22T05:40:09.3726959Z\",\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-01-22T05:40:08.6634458Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"targetObjectName\": \"vi-win-vm-new\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"primaryVmName\": \"vi-win-vm-new\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"vi-win-vm-new\",\r\n \"protectionProfileId\": \"efede9dc-b50e-5723-93e9-4bd8604069c5\",\r\n \"primaryCloudId\": \"cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryCloudName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryVmmName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"VMware\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c" + } +} \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrV2ATests/V2AUpdateRPIWithAvZone.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrV2ATests/V2AUpdateRPIWithAvZone.json new file mode 100644 index 000000000000..9314be9f828a --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrV2ATests/V2AUpdateRPIWithAvZone.json @@ -0,0 +1,1201 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fddb3ef3-5968-4c99-aa00-f3fb9c0808b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.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-ms-original-request-ids": [ + "3e2cc036-1914-42cf-bdc2-012b01eae839", + "3e2cc036-1914-42cf-bdc2-012b01eae839" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3e2cc036-1914-42cf-bdc2-012b01eae839" + ], + "x-ms-correlation-request-id": [ + "3e2cc036-1914-42cf-bdc2-012b01eae839" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T085950Z:3e2cc036-1914-42cf-bdc2-012b01eae839" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Jan 2021 08:59:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1374" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidyavault\",\r\n \"etag\": \"W/\\\"datetime'2021-01-22T05%3A15%3A43.2034947Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vijamivault\",\r\n \"etag\": \"W/\\\"datetime'2021-01-19T08%3A03%3A26.3037424Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vijamivault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testvault\",\r\n \"etag\": \"W/\\\"datetime'2021-01-15T04%3A31%3A48.0780041Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/testvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02abb9e4-a88e-4dff-8a98-f201d1ec54eb" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302391075)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907191075)\\/\",\"ClientRequestId\":\"520ba9b4-a1f3-4694-a768-0ccc93941336-2021-01-22 08:59:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"I0JynIh08BVL67BowqBwPE0FcVNCpW55bhahShO/UOg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "02abb9e4-a88e-4dff-8a98-f201d1ec54eb 1/22/2021 8:59:53 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "02abb9e4-a88e-4dff-8a98-f201d1ec54eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "bf2e1e75-28dc-4fda-a6ca-6c3539b07dbf" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T085953Z:bf2e1e75-28dc-4fda-a6ca-6c3539b07dbf" + ], + "Date": [ + "Fri, 22 Jan 2021 08:59:53 GMT" + ], + "Content-Length": [ + "9848" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"hyperv\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/hyperv\",\r\n \"properties\": {\r\n \"friendlyName\": \"hyperv\",\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\": \"46e5f324-c3fa-508e-8a90-a3232d20dce0\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": null,\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"FabricInfrastructure\",\r\n \"errorCode\": \"AcsToAadMigrationPending\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"ACS to AAD migration pending.\",\r\n \"possibleCauses\": \"ACS to AAD migration pending.\",\r\n \"recommendedAction\": \"Migrate from ACS to AAD. If job failed, please retry.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:59:53.3048097Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"\"\r\n }\r\n ],\r\n \"health\": \"Error\"\r\n }\r\n },\r\n {\r\n \"name\": \"f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"properties\": {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\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\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T08:48:19Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"machineCount\": \"1\",\r\n \"replicationPairCount\": \"1\",\r\n \"systemLoad\": \"7\",\r\n \"systemLoadStatus\": \"Yellow\",\r\n \"cpuLoad\": \"8%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2341714312,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24458570410,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:54Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"osVersion\": null,\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"health\": \"Critical\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2021-01-22T08:49:43Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 10,\r\n \"throughputInBytes\": 10417020,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": null,\r\n \"marsRegistrationStatus\": null\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"name\": \"WIN-B6L6OJO1E6Q\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T08:49:43Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"retentionVolumes\": [],\r\n \"dataStores\": [\r\n {\r\n \"symbolicName\": \"datastore1\",\r\n \"uuid\": \"5fda103a-1a1e7a80-f1bd-4cd98f63b7b7\",\r\n \"capacity\": \"550.75\",\r\n \"freeSpace\": \"206.12\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"datastore78-ext2\",\r\n \"uuid\": \"5de660af-54cd74db-e392-f8bc124d6486\",\r\n \"capacity\": \"5119.75\",\r\n \"freeSpace\": \"419.13\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"Newdatastore\",\r\n \"uuid\": \"5fe1f478-e5a7e09a-702b-4cd98f63b7b7\",\r\n \"capacity\": \"3071.75\",\r\n \"freeSpace\": \"560.31\",\r\n \"type\": \"VMFS\"\r\n }\r\n ],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"diskCount\": 1,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"marsAgentVersion\": \"2.0.9165.0\",\r\n \"marsAgentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9165.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [\r\n {\r\n \"accountId\": \"1\",\r\n \"accountName\": \"winacc\"\r\n },\r\n {\r\n \"accountId\": \"2\",\r\n \"accountName\": \"vcenteracc\"\r\n }\r\n ],\r\n \"replicationPairCount\": \"1\",\r\n \"processServerCount\": \"1\",\r\n \"agentCount\": \"1\",\r\n \"protectedServers\": \"1\",\r\n \"systemLoad\": \"7\",\r\n \"systemLoadStatus\": \"Yellow\",\r\n \"cpuLoad\": \"8%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2341714312,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24458570410,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"hostName\": \"WIN-B6L6OJO1E6Q\",\r\n \"lastHeartbeat\": \"2021-01-22T08:50:25.3368756Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:53Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"psTemplateVersion\": \"202101.07.00\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"ConfigurationServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"816\",\r\n \"summaryMessage\": \"Configuration server or Azure Site Recovery Provider version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Configuration Server or Azure Site Recovery Provider ended on (01/01/0001). The service is currently running with limited functionality, upgrade Configuration Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Configuration Server or Azure Site Recovery Provider has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Configuration Server or Azure Site Recovery Provider now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4698556Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTg/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02abb9e4-a88e-4dff-8a98-f201d1ec54eb" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302393559)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907193559)\\/\",\"ClientRequestId\":\"15d2efb7-47e0-40cf-b23c-a30d160f28b7-2021-01-22 08:59:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TnV2GVWGUjU28ZtV6o+APENQsHBL54q8kZx7vHGjyuU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "02abb9e4-a88e-4dff-8a98-f201d1ec54eb 1/22/2021 8:59:53 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "02abb9e4-a88e-4dff-8a98-f201d1ec54eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "9f118da8-cc6e-4db2-8be1-09332222f9e6" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T085953Z:9f118da8-cc6e-4db2-8be1-09332222f9e6" + ], + "Date": [ + "Fri, 22 Jan 2021 08:59:53 GMT" + ], + "Content-Length": [ + "8778" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"properties\": {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\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\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T08:48:19Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"machineCount\": \"1\",\r\n \"replicationPairCount\": \"1\",\r\n \"systemLoad\": \"7\",\r\n \"systemLoadStatus\": \"Yellow\",\r\n \"cpuLoad\": \"8%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2341714312,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24458570410,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:54Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"osVersion\": null,\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"health\": \"Critical\",\r\n \"psStatsRefreshTime\": \"2021-01-22T08:49:43Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 10,\r\n \"throughputInBytes\": 10417020,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": null,\r\n \"marsRegistrationStatus\": null\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"name\": \"WIN-B6L6OJO1E6Q\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T08:49:43Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"retentionVolumes\": [],\r\n \"dataStores\": [\r\n {\r\n \"symbolicName\": \"datastore1\",\r\n \"uuid\": \"5fda103a-1a1e7a80-f1bd-4cd98f63b7b7\",\r\n \"capacity\": \"550.75\",\r\n \"freeSpace\": \"206.12\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"datastore78-ext2\",\r\n \"uuid\": \"5de660af-54cd74db-e392-f8bc124d6486\",\r\n \"capacity\": \"5119.75\",\r\n \"freeSpace\": \"419.13\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"Newdatastore\",\r\n \"uuid\": \"5fe1f478-e5a7e09a-702b-4cd98f63b7b7\",\r\n \"capacity\": \"3071.75\",\r\n \"freeSpace\": \"560.31\",\r\n \"type\": \"VMFS\"\r\n }\r\n ],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"diskCount\": 1,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"marsAgentVersion\": \"2.0.9165.0\",\r\n \"marsAgentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9165.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [\r\n {\r\n \"accountId\": \"1\",\r\n \"accountName\": \"winacc\"\r\n },\r\n {\r\n \"accountId\": \"2\",\r\n \"accountName\": \"vcenteracc\"\r\n }\r\n ],\r\n \"replicationPairCount\": \"1\",\r\n \"processServerCount\": \"1\",\r\n \"agentCount\": \"1\",\r\n \"protectedServers\": \"1\",\r\n \"systemLoad\": \"7\",\r\n \"systemLoadStatus\": \"Yellow\",\r\n \"cpuLoad\": \"8%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2341714312,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24458570410,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"hostName\": \"WIN-B6L6OJO1E6Q\",\r\n \"lastHeartbeat\": \"2021-01-22T08:50:25.3368756Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:53Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"psTemplateVersion\": \"202101.07.00\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"ConfigurationServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"816\",\r\n \"summaryMessage\": \"Configuration server or Azure Site Recovery Provider version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Configuration Server or Azure Site Recovery Provider ended on (01/01/0001). The service is currently running with limited functionality, upgrade Configuration Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Configuration Server or Azure Site Recovery Provider has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Configuration Server or Azure Site Recovery Provider now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4698556Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bee89c8-5b57-4af4-a585-771bf3ebceed" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302393970)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907193970)\\/\",\"ClientRequestId\":\"21a8ec1c-7e50-4728-8314-92a061c50f08-2021-01-22 08:59:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZyZUB7giKlsBJXdaNb1EW3dzmZuVgXuVGZIlIbgO9Xg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "8bee89c8-5b57-4af4-a585-771bf3ebceed 1/22/2021 8:59:54 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "8bee89c8-5b57-4af4-a585-771bf3ebceed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "3acb7988-29f3-4601-8fcb-8d2ce3e0d639" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T085954Z:3acb7988-29f3-4601-8fcb-8d2ce3e0d639" + ], + "Date": [ + "Fri, 22 Jan 2021 08:59:53 GMT" + ], + "Content-Length": [ + "676" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"name\": \"cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"fabricType\": \"VMware\",\r\n \"protectedItemCount\": 1,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2Y/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bee89c8-5b57-4af4-a585-771bf3ebceed" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302394308)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907194308)\\/\",\"ClientRequestId\":\"81c35564-cb81-40e6-895d-b7aaf4798f89-2021-01-22 08:59:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"T+fOUNafl15xmf8oybu6lTU3+yuK0nUAwxkbNqa2RNo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "8bee89c8-5b57-4af4-a585-771bf3ebceed 1/22/2021 8:59:54 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "8bee89c8-5b57-4af4-a585-771bf3ebceed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "636eebdd-3fcc-4c57-bcb6-7c9010821afe" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T085954Z:636eebdd-3fcc-4c57-bcb6-7c9010821afe" + ], + "Date": [ + "Fri, 22 Jan 2021 08:59:54 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"name\": \"cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"fabricType\": \"VMware\",\r\n \"protectedItemCount\": 1,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bee89c8-5b57-4af4-a585-771bf3ebceed" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302394690)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907194690)\\/\",\"ClientRequestId\":\"20f56137-1bfd-480e-a342-dc8793068088-2021-01-22 08:59:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EsMOTrwbagRPCt1Etd/YBbYYTeReBYv0cEqiKIdzMD4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "8bee89c8-5b57-4af4-a585-771bf3ebceed 1/22/2021 8:59:54 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "8bee89c8-5b57-4af4-a585-771bf3ebceed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "1fff9093-256c-4df5-a1e8-ada6e5ff6993" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T085955Z:1fff9093-256c-4df5-a1e8-ada6e5ff6993" + ], + "Date": [ + "Fri, 22 Jan 2021 08:59:54 GMT" + ], + "Content-Length": [ + "2572" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"name\": \"f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"sourceFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"test-policy\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/ae9dfb2d-7c1b-4df9-8947-b742d6172721\",\r\n \"name\": \"ae9dfb2d-7c1b-4df9-8947-b742d6172721\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"targetProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy-failback\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"sourceFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"targetFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"policyFriendlyName\": \"test-policy-failback\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Qb2xpY2llcy90ZXN0LXBvbGljeT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bee89c8-5b57-4af4-a585-771bf3ebceed" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302395085)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907195085)\\/\",\"ClientRequestId\":\"c302a18e-5fdd-42b6-a83b-32f2f6cb92ad-2021-01-22 08:59:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"P++7oGLuKWkwCKXL8q3dLBB2nfJD6Ziek/FmKyUzQ5E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "8bee89c8-5b57-4af4-a585-771bf3ebceed 1/22/2021 8:59:55 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "8bee89c8-5b57-4af4-a585-771bf3ebceed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "f5071043-e3c8-408c-bf45-0a3c9f5deec8" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T085955Z:f5071043-e3c8-408c-bf45-0a3c9f5deec8" + ], + "Date": [ + "Fri, 22 Jan 2021 08:59:54 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"name\": \"test-policy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Qb2xpY2llcy90ZXN0LXBvbGljeT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f2a2d84-d5c0-4911-ab87-448d1e7a838e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302395755)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907195755)\\/\",\"ClientRequestId\":\"ff878383-8309-4451-9e35-5253eb69ffa6-2021-01-22 08:59:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lUu/uy5tl0TyIXDY4RFPZNL8eniM609Dy9pFs0AElbs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "9f2a2d84-d5c0-4911-ab87-448d1e7a838e 1/22/2021 8:59:55 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "9f2a2d84-d5c0-4911-ab87-448d1e7a838e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "47a88a83-e2a7-4837-928b-888bc397ea0a" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T085955Z:47a88a83-e2a7-4837-928b-888bc397ea0a" + ], + "Date": [ + "Fri, 22 Jan 2021 08:59:55 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"name\": \"test-policy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy-failback?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Qb2xpY2llcy90ZXN0LXBvbGljeS1mYWlsYmFjaz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bee89c8-5b57-4af4-a585-771bf3ebceed" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302395453)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907195453)\\/\",\"ClientRequestId\":\"03abb68e-2291-4780-a87b-a6ae1017916f-2021-01-22 08:59:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+JyTLsZa0k/jV28ao2Xe14CaYIeMbeRf/3uN9DFYobo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "8bee89c8-5b57-4af4-a585-771bf3ebceed 1/22/2021 8:59:55 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "8bee89c8-5b57-4af4-a585-771bf3ebceed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "7f0350e2-db30-43c9-bbfd-214f4e6b7e6e" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T085955Z:7f0350e2-db30-43c9-bbfd-214f4e6b7e6e" + ], + "Date": [ + "Fri, 22 Jan 2021 08:59:55 GMT" + ], + "Content-Length": [ + "511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy-failback\",\r\n \"name\": \"test-policy-failback\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy-failback\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMage\",\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/f858b936-ee57-44c4-9ff9-2907d418fbd2?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvZjg1OGI5MzYtZWU1Ny00NGM0LTlmZjktMjkwN2Q0MThmYmQyP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "437f7d58-2acf-4dc9-9908-745eff9651f4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302396051)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907196051)\\/\",\"ClientRequestId\":\"5406f237-5b44-4913-8388-57c95c344153-2021-01-22 08:59:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mh6YSqWVyGkKTUxJmtWrNj/kpavI8evZPrQ6R08e4Vc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "437f7d58-2acf-4dc9-9908-745eff9651f4 1/22/2021 8:59:56 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "437f7d58-2acf-4dc9-9908-745eff9651f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "779ab7b5-fe9b-4742-b0da-e91e8283a049" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T085956Z:779ab7b5-fe9b-4742-b0da-e91e8283a049" + ], + "Date": [ + "Fri, 22 Jan 2021 08:59:55 GMT" + ], + "Content-Length": [ + "1125" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"name\": \"f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"sourceFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"test-policy\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17427a51-2c01-4981-b5ce-c9bd974f85d2" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302396463)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907196463)\\/\",\"ClientRequestId\":\"2c5fce5e-cc42-4695-81cf-6bf032af49a2-2021-01-22 08:59:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GbHV7vw1ygCNtdEwU0aNEvTmL2K1VTGcfXsTmnvh/Ww=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "17427a51-2c01-4981-b5ce-c9bd974f85d2 1/22/2021 8:59:56 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "17427a51-2c01-4981-b5ce-c9bd974f85d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "d52686ae-b4a9-4084-bf74-5333d73d5391" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T085956Z:d52686ae-b4a9-4084-bf74-5333d73d5391" + ], + "Date": [ + "Fri, 22 Jan 2021 08:59:56 GMT" + ], + "Content-Length": [ + "8102" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm\",\r\n \"name\": \"vi-win-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vi-win-vm-new\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"primaryFabricProvider\": \"InMageFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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\": \"ReplicationUnitProviderErrorOnPrimary\",\r\n \"errorType\": \"102\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"78183\",\r\n \"summaryMessage\": \"Mobility service version is nearing End-Of-Support\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery mobility service(9.32.0.0) running on your protected virtual machines ended on (01/07/2021). The service is currently running with limited functionality, upgrade mobility service to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Mobility service has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Mobility service now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:32:02.2822049Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"2:102\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\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 'vi-win-vm-new'.\",\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-01-22T08:59:22.8100482Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"policyFriendlyName\": \"test-policy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"infrastructureVmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"protectionStage\": \"ResyncStepII\",\r\n \"vmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"resyncProgressPercentage\": 0,\r\n \"rpoInSeconds\": 8826,\r\n \"compressedDataRateInMB\": 20.840993881226,\r\n \"uncompressedDataRateInMB\": 20.840993881226,\r\n \"ipAddress\": \"10.150.168.181\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"isAgentUpdateRequired\": \"NotRequired\",\r\n \"isRebootAfterUpdateRequired\": \"NotRequired\",\r\n \"lastHeartbeat\": \"2021-01-22T08:49:26Z\",\r\n \"processServerId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"processServerName\": \"WIN-B6L6OJO1E6Q\",\r\n \"multiVmGroupId\": \"d67e9beb-f3fd-4b93-8159-91a91df7219e\",\r\n \"multiVmGroupName\": \"d67e9beb-f3fd-4b93-8159-91a91df7219e\",\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"protectedDisks\": [],\r\n \"diskResized\": null,\r\n \"masterTargetId\": null,\r\n \"sourceVmCpuCount\": 0,\r\n \"sourceVmRamSizeInMB\": 0,\r\n \"osType\": \"Windows\",\r\n \"vhdName\": null,\r\n \"osDiskId\": null,\r\n \"azureVMDiskDetails\": null,\r\n \"recoveryAzureVMName\": \"vi-win-vm-new\",\r\n \"recoveryAzureVMSize\": \"Standard_A2_v2\",\r\n \"recoveryAzureStorageAccount\": null,\r\n \"recoveryAzureLogStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Storage/storageAccounts/logstoracc123\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"00:50:56:86:0B:DB\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"Subnet-1\",\r\n \"vMNetworkName\": \"Intel(R) PRO/1000 MT Network Connection\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": null,\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"selectedSourceNicId\": \"00:50:56:86:0B:DB\",\r\n \"discoveryType\": \"vCenter\",\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"datastores\": [\r\n \"datastore78-ext2\"\r\n ],\r\n \"targetVmId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/virtualMachines/\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg\",\r\n \"recoveryAvailabilitySetId\": null,\r\n \"targetAvailabilityZone\": \"1\",\r\n \"targetProximityPlacementGroupId\": null,\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"validationErrors\": [],\r\n \"lastRpoCalculatedTime\": \"2021-01-22T08:46:10Z\",\r\n \"lastUpdateReceivedTime\": \"2021-01-22T08:50:25.8525019Z\",\r\n \"replicaId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef_replica_cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"protectedManagedDisks\": [],\r\n \"lastRecoveryPointReceived\": \"2021-01-22T08:58:03.405328Z\",\r\n \"firmwareType\": \"BIOS\",\r\n \"azureVmGeneration\": \"V1\",\r\n \"isAdditionalStatsAvailable\": false,\r\n \"totalDataTransferred\": 0,\r\n \"totalProgressHealth\": null,\r\n \"targetVmTags\": {},\r\n \"seedManagedDiskTags\": null,\r\n \"targetManagedDiskTags\": null,\r\n \"targetNicTags\": {}\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"4ddf2e75-abc5-4478-9c3b-301a1277b3e4\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1a0d9ec-779d-4e5f-a823-62cab3794c4b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302399868)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907199868)\\/\",\"ClientRequestId\":\"32790ba2-ba0d-4a8b-9965-dd8fd3750961-2021-01-22 08:59:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"aBkRwTojKh4m8TD2tOuVWfXUvG/VkC5iiDV9LKv64m4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "c1a0d9ec-779d-4e5f-a823-62cab3794c4b 1/22/2021 9:00:00 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c1a0d9ec-779d-4e5f-a823-62cab3794c4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "2ab5d18e-1806-4280-b0f7-6eae7376a895" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T090000Z:2ab5d18e-1806-4280-b0f7-6eae7376a895" + ], + "Date": [ + "Fri, 22 Jan 2021 09:00:00 GMT" + ], + "Content-Length": [ + "8102" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm\",\r\n \"name\": \"vi-win-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vi-win-vm-new\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"primaryFabricProvider\": \"InMageFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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\": \"ReplicationUnitProviderErrorOnPrimary\",\r\n \"errorType\": \"102\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"78183\",\r\n \"summaryMessage\": \"Mobility service version is nearing End-Of-Support\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery mobility service(9.32.0.0) running on your protected virtual machines ended on (01/07/2021). The service is currently running with limited functionality, upgrade mobility service to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Mobility service has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Mobility service now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:32:02.2822049Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"2:102\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\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 'vi-win-vm-new'.\",\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-01-22T08:59:22.8100482Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"policyFriendlyName\": \"test-policy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"infrastructureVmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"protectionStage\": \"ResyncStepII\",\r\n \"vmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"resyncProgressPercentage\": 0,\r\n \"rpoInSeconds\": 8826,\r\n \"compressedDataRateInMB\": 20.840993881226,\r\n \"uncompressedDataRateInMB\": 20.840993881226,\r\n \"ipAddress\": \"10.150.168.181\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"isAgentUpdateRequired\": \"NotRequired\",\r\n \"isRebootAfterUpdateRequired\": \"NotRequired\",\r\n \"lastHeartbeat\": \"2021-01-22T08:49:26Z\",\r\n \"processServerId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"processServerName\": \"WIN-B6L6OJO1E6Q\",\r\n \"multiVmGroupId\": \"d67e9beb-f3fd-4b93-8159-91a91df7219e\",\r\n \"multiVmGroupName\": \"d67e9beb-f3fd-4b93-8159-91a91df7219e\",\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"protectedDisks\": [],\r\n \"diskResized\": null,\r\n \"masterTargetId\": null,\r\n \"sourceVmCpuCount\": 0,\r\n \"sourceVmRamSizeInMB\": 0,\r\n \"osType\": \"Windows\",\r\n \"vhdName\": null,\r\n \"osDiskId\": null,\r\n \"azureVMDiskDetails\": null,\r\n \"recoveryAzureVMName\": \"vi-win-vm-new\",\r\n \"recoveryAzureVMSize\": \"Standard_A2_v2\",\r\n \"recoveryAzureStorageAccount\": null,\r\n \"recoveryAzureLogStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Storage/storageAccounts/logstoracc123\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"00:50:56:86:0B:DB\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"Subnet-1\",\r\n \"vMNetworkName\": \"Intel(R) PRO/1000 MT Network Connection\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": null,\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"selectedSourceNicId\": \"00:50:56:86:0B:DB\",\r\n \"discoveryType\": \"vCenter\",\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"datastores\": [\r\n \"datastore78-ext2\"\r\n ],\r\n \"targetVmId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/virtualMachines/\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg\",\r\n \"recoveryAvailabilitySetId\": null,\r\n \"targetAvailabilityZone\": \"1\",\r\n \"targetProximityPlacementGroupId\": null,\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"validationErrors\": [],\r\n \"lastRpoCalculatedTime\": \"2021-01-22T08:46:10Z\",\r\n \"lastUpdateReceivedTime\": \"2021-01-22T08:50:25.8525019Z\",\r\n \"replicaId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef_replica_cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"protectedManagedDisks\": [],\r\n \"lastRecoveryPointReceived\": \"2021-01-22T08:58:03.405328Z\",\r\n \"firmwareType\": \"BIOS\",\r\n \"azureVmGeneration\": \"V1\",\r\n \"isAdditionalStatsAvailable\": false,\r\n \"totalDataTransferred\": 0,\r\n \"totalProgressHealth\": null,\r\n \"targetVmTags\": {},\r\n \"seedManagedDiskTags\": null,\r\n \"targetManagedDiskTags\": null,\r\n \"targetNicTags\": {}\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"4ddf2e75-abc5-4478-9c3b-301a1277b3e4\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy92aS13aW4tdm0/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17427a51-2c01-4981-b5ce-c9bd974f85d2" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302396938)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907196938)\\/\",\"ClientRequestId\":\"cbdac7ef-2a03-4759-9fdb-a6fd757eafb1-2021-01-22 08:59:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7YX/qYEsJKht8vUZ5/y47gfcw3ZM6GWVTkUJFTgUiiQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "17427a51-2c01-4981-b5ce-c9bd974f85d2 1/22/2021 8:59:57 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "17427a51-2c01-4981-b5ce-c9bd974f85d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "d91a6f55-c9bd-409a-b0ad-3e69df365b57" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T085957Z:d91a6f55-c9bd-409a-b0ad-3e69df365b57" + ], + "Date": [ + "Fri, 22 Jan 2021 08:59:56 GMT" + ], + "Content-Length": [ + "9071" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm\",\r\n \"name\": \"vi-win-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vi-win-vm-new\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"primaryFabricProvider\": \"InMageFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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\": \"ReplicationUnitProviderErrorOnPrimary\",\r\n \"errorType\": \"102\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"78183\",\r\n \"summaryMessage\": \"Mobility service version is nearing End-Of-Support\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery mobility service(9.32.0.0) running on your protected virtual machines ended on (01/07/2021). The service is currently running with limited functionality, upgrade mobility service to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Mobility service has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Mobility service now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:32:02.2822049Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"2:102\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\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 'vi-win-vm-new'.\",\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-01-22T08:59:22.8100482Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"policyFriendlyName\": \"test-policy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"infrastructureVmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"protectionStage\": \"ResyncStepII\",\r\n \"vmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"resyncProgressPercentage\": 0,\r\n \"rpoInSeconds\": 8826,\r\n \"compressedDataRateInMB\": 20.840993881226,\r\n \"uncompressedDataRateInMB\": 20.840993881226,\r\n \"ipAddress\": \"10.150.168.181\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"isAgentUpdateRequired\": \"NotRequired\",\r\n \"isRebootAfterUpdateRequired\": \"NotRequired\",\r\n \"lastHeartbeat\": \"2021-01-22T08:49:26Z\",\r\n \"processServerId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"processServerName\": \"WIN-B6L6OJO1E6Q\",\r\n \"multiVmGroupId\": \"d67e9beb-f3fd-4b93-8159-91a91df7219e\",\r\n \"multiVmGroupName\": \"d67e9beb-f3fd-4b93-8159-91a91df7219e\",\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"protectedDisks\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"diskName\": \"Disk0\",\r\n \"protectionStage\": \"ResyncStepII\",\r\n \"healthErrorCode\": null,\r\n \"rpoInSeconds\": 8826,\r\n \"resyncRequired\": \"NotRequired\",\r\n \"resyncProgressPercentage\": 0,\r\n \"resyncDurationInSeconds\": 852,\r\n \"diskCapacityInBytes\": 42949672960,\r\n \"fileSystemCapacityInBytes\": 42949672960,\r\n \"sourceDataInMegaBytes\": 0.09,\r\n \"psDataInMegaBytes\": 5.33,\r\n \"targetDataInMegaBytes\": 0.0,\r\n \"diskResized\": \"NotResized\",\r\n \"lastRpoCalculatedTime\": \"2021-01-22T08:46:10Z\",\r\n \"resyncProcessedBytes\": 0,\r\n \"resyncTotalTransferredBytes\": 0,\r\n \"resyncLast15MinutesTransferredBytes\": 0,\r\n \"resyncLastDataTransferTimeUTC\": null,\r\n \"resyncStartTime\": null,\r\n \"progressHealth\": null,\r\n \"progressStatus\": null\r\n }\r\n ],\r\n \"diskResized\": \"NotResized\",\r\n \"masterTargetId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"sourceVmCpuCount\": 1,\r\n \"sourceVmRamSizeInMB\": 4095,\r\n \"osType\": \"Windows\",\r\n \"vhdName\": \"\\\\\\\\.\\\\PHYSICALDRIVE0\",\r\n \"osDiskId\": \"{3255470998}\",\r\n \"azureVMDiskDetails\": [],\r\n \"recoveryAzureVMName\": \"vi-win-vm-new\",\r\n \"recoveryAzureVMSize\": \"Standard_A2_v2\",\r\n \"recoveryAzureStorageAccount\": null,\r\n \"recoveryAzureLogStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Storage/storageAccounts/logstoracc123\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"00:50:56:86:0B:DB\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"Subnet-1\",\r\n \"vMNetworkName\": \"Intel(R) PRO/1000 MT Network Connection\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": null,\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"selectedSourceNicId\": \"00:50:56:86:0B:DB\",\r\n \"discoveryType\": \"vCenter\",\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"datastores\": [\r\n \"datastore78-ext2\"\r\n ],\r\n \"targetVmId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/virtualMachines/\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg\",\r\n \"recoveryAvailabilitySetId\": null,\r\n \"targetAvailabilityZone\": \"1\",\r\n \"targetProximityPlacementGroupId\": null,\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"validationErrors\": [],\r\n \"lastRpoCalculatedTime\": \"2021-01-22T08:46:10Z\",\r\n \"lastUpdateReceivedTime\": \"2021-01-22T08:50:25.8525019Z\",\r\n \"replicaId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef_replica_cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"seedManagedDiskId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/disks/asrseeddisk-vi_win_v-PHYSICAL-3124d3a3-cd9f-44ef-9eaa-e2325b7e497a\",\r\n \"replicaDiskType\": \"Standard_LRS\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"lastRecoveryPointReceived\": \"2021-01-22T08:58:03.405328Z\",\r\n \"firmwareType\": \"BIOS\",\r\n \"azureVmGeneration\": \"V1\",\r\n \"isAdditionalStatsAvailable\": false,\r\n \"totalDataTransferred\": 0,\r\n \"totalProgressHealth\": null,\r\n \"targetVmTags\": {},\r\n \"seedManagedDiskTags\": null,\r\n \"targetManagedDiskTags\": null,\r\n \"targetNicTags\": {}\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"4ddf2e75-abc5-4478-9c3b-301a1277b3e4\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy92aS13aW4tdm0/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b54aa41b-736d-411a-9bd4-14cd2c833e9c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302397408)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907197408)\\/\",\"ClientRequestId\":\"3de02ea9-650f-4a24-a52e-307f9928c090-2021-01-22 08:59:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vs9MRLufXdZC1qTqwGKh+5ZrJjn9P+CvvTCGw8ec2NY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "b54aa41b-736d-411a-9bd4-14cd2c833e9c 1/22/2021 8:59:57 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b54aa41b-736d-411a-9bd4-14cd2c833e9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "09120280-2345-454c-8f55-ac1155760e19" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T085957Z:09120280-2345-454c-8f55-ac1155760e19" + ], + "Date": [ + "Fri, 22 Jan 2021 08:59:56 GMT" + ], + "Content-Length": [ + "9071" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm\",\r\n \"name\": \"vi-win-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vi-win-vm-new\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"primaryFabricProvider\": \"InMageFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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\": \"ReplicationUnitProviderErrorOnPrimary\",\r\n \"errorType\": \"102\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"78183\",\r\n \"summaryMessage\": \"Mobility service version is nearing End-Of-Support\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery mobility service(9.32.0.0) running on your protected virtual machines ended on (01/07/2021). The service is currently running with limited functionality, upgrade mobility service to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Mobility service has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Mobility service now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:32:02.2822049Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"2:102\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\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 'vi-win-vm-new'.\",\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-01-22T08:59:22.8100482Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"policyFriendlyName\": \"test-policy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"infrastructureVmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"protectionStage\": \"ResyncStepII\",\r\n \"vmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"resyncProgressPercentage\": 0,\r\n \"rpoInSeconds\": 8826,\r\n \"compressedDataRateInMB\": 20.840993881226,\r\n \"uncompressedDataRateInMB\": 20.840993881226,\r\n \"ipAddress\": \"10.150.168.181\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"isAgentUpdateRequired\": \"NotRequired\",\r\n \"isRebootAfterUpdateRequired\": \"NotRequired\",\r\n \"lastHeartbeat\": \"2021-01-22T08:49:26Z\",\r\n \"processServerId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"processServerName\": \"WIN-B6L6OJO1E6Q\",\r\n \"multiVmGroupId\": \"d67e9beb-f3fd-4b93-8159-91a91df7219e\",\r\n \"multiVmGroupName\": \"d67e9beb-f3fd-4b93-8159-91a91df7219e\",\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"protectedDisks\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"diskName\": \"Disk0\",\r\n \"protectionStage\": \"ResyncStepII\",\r\n \"healthErrorCode\": null,\r\n \"rpoInSeconds\": 8826,\r\n \"resyncRequired\": \"NotRequired\",\r\n \"resyncProgressPercentage\": 0,\r\n \"resyncDurationInSeconds\": 852,\r\n \"diskCapacityInBytes\": 42949672960,\r\n \"fileSystemCapacityInBytes\": 42949672960,\r\n \"sourceDataInMegaBytes\": 0.09,\r\n \"psDataInMegaBytes\": 5.33,\r\n \"targetDataInMegaBytes\": 0.0,\r\n \"diskResized\": \"NotResized\",\r\n \"lastRpoCalculatedTime\": \"2021-01-22T08:46:10Z\",\r\n \"resyncProcessedBytes\": 0,\r\n \"resyncTotalTransferredBytes\": 0,\r\n \"resyncLast15MinutesTransferredBytes\": 0,\r\n \"resyncLastDataTransferTimeUTC\": null,\r\n \"resyncStartTime\": null,\r\n \"progressHealth\": null,\r\n \"progressStatus\": null\r\n }\r\n ],\r\n \"diskResized\": \"NotResized\",\r\n \"masterTargetId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"sourceVmCpuCount\": 1,\r\n \"sourceVmRamSizeInMB\": 4095,\r\n \"osType\": \"Windows\",\r\n \"vhdName\": \"\\\\\\\\.\\\\PHYSICALDRIVE0\",\r\n \"osDiskId\": \"{3255470998}\",\r\n \"azureVMDiskDetails\": [],\r\n \"recoveryAzureVMName\": \"vi-win-vm-new\",\r\n \"recoveryAzureVMSize\": \"Standard_A2_v2\",\r\n \"recoveryAzureStorageAccount\": null,\r\n \"recoveryAzureLogStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Storage/storageAccounts/logstoracc123\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"00:50:56:86:0B:DB\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"Subnet-1\",\r\n \"vMNetworkName\": \"Intel(R) PRO/1000 MT Network Connection\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": null,\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"selectedSourceNicId\": \"00:50:56:86:0B:DB\",\r\n \"discoveryType\": \"vCenter\",\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"datastores\": [\r\n \"datastore78-ext2\"\r\n ],\r\n \"targetVmId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/virtualMachines/\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg\",\r\n \"recoveryAvailabilitySetId\": null,\r\n \"targetAvailabilityZone\": \"1\",\r\n \"targetProximityPlacementGroupId\": null,\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"validationErrors\": [],\r\n \"lastRpoCalculatedTime\": \"2021-01-22T08:46:10Z\",\r\n \"lastUpdateReceivedTime\": \"2021-01-22T08:50:25.8525019Z\",\r\n \"replicaId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef_replica_cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"seedManagedDiskId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/disks/asrseeddisk-vi_win_v-PHYSICAL-3124d3a3-cd9f-44ef-9eaa-e2325b7e497a\",\r\n \"replicaDiskType\": \"Standard_LRS\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"lastRecoveryPointReceived\": \"2021-01-22T08:58:03.405328Z\",\r\n \"firmwareType\": \"BIOS\",\r\n \"azureVmGeneration\": \"V1\",\r\n \"isAdditionalStatsAvailable\": false,\r\n \"totalDataTransferred\": 0,\r\n \"totalProgressHealth\": null,\r\n \"targetVmTags\": {},\r\n \"seedManagedDiskTags\": null,\r\n \"targetManagedDiskTags\": null,\r\n \"targetNicTags\": {}\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"4ddf2e75-abc5-4478-9c3b-301a1277b3e4\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy92aS13aW4tdm0/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1a0d9ec-779d-4e5f-a823-62cab3794c4b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302400233)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907200233)\\/\",\"ClientRequestId\":\"5ceeadc0-62f5-4df0-bcf3-005848837092-2021-01-22 09:00:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nAKK1a6GJCqoQZPW+3I7wpJIF8PuHC1SdepKd5z+NY0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "c1a0d9ec-779d-4e5f-a823-62cab3794c4b 1/22/2021 9:00:00 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c1a0d9ec-779d-4e5f-a823-62cab3794c4b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "d8aad800-159c-47f2-b985-16843adc4018" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T090000Z:d8aad800-159c-47f2-b985-16843adc4018" + ], + "Date": [ + "Fri, 22 Jan 2021 09:00:00 GMT" + ], + "Content-Length": [ + "9071" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm\",\r\n \"name\": \"vi-win-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vi-win-vm-new\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"primaryFabricProvider\": \"InMageFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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\": \"ReplicationUnitProviderErrorOnPrimary\",\r\n \"errorType\": \"102\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"78183\",\r\n \"summaryMessage\": \"Mobility service version is nearing End-Of-Support\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery mobility service(9.32.0.0) running on your protected virtual machines ended on (01/07/2021). The service is currently running with limited functionality, upgrade mobility service to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Mobility service has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Mobility service now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-22T08:32:02.2822049Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"2:102\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\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 'vi-win-vm-new'.\",\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-01-22T08:59:22.8100482Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"policyFriendlyName\": \"test-policy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"infrastructureVmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"protectionStage\": \"ResyncStepII\",\r\n \"vmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"resyncProgressPercentage\": 0,\r\n \"rpoInSeconds\": 8826,\r\n \"compressedDataRateInMB\": 20.840993881226,\r\n \"uncompressedDataRateInMB\": 20.840993881226,\r\n \"ipAddress\": \"10.150.168.181\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"isAgentUpdateRequired\": \"NotRequired\",\r\n \"isRebootAfterUpdateRequired\": \"NotRequired\",\r\n \"lastHeartbeat\": \"2021-01-22T08:49:26Z\",\r\n \"processServerId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"processServerName\": \"WIN-B6L6OJO1E6Q\",\r\n \"multiVmGroupId\": \"d67e9beb-f3fd-4b93-8159-91a91df7219e\",\r\n \"multiVmGroupName\": \"d67e9beb-f3fd-4b93-8159-91a91df7219e\",\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"protectedDisks\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"diskName\": \"Disk0\",\r\n \"protectionStage\": \"ResyncStepII\",\r\n \"healthErrorCode\": null,\r\n \"rpoInSeconds\": 8826,\r\n \"resyncRequired\": \"NotRequired\",\r\n \"resyncProgressPercentage\": 0,\r\n \"resyncDurationInSeconds\": 852,\r\n \"diskCapacityInBytes\": 42949672960,\r\n \"fileSystemCapacityInBytes\": 42949672960,\r\n \"sourceDataInMegaBytes\": 0.09,\r\n \"psDataInMegaBytes\": 5.33,\r\n \"targetDataInMegaBytes\": 0.0,\r\n \"diskResized\": \"NotResized\",\r\n \"lastRpoCalculatedTime\": \"2021-01-22T08:46:10Z\",\r\n \"resyncProcessedBytes\": 0,\r\n \"resyncTotalTransferredBytes\": 0,\r\n \"resyncLast15MinutesTransferredBytes\": 0,\r\n \"resyncLastDataTransferTimeUTC\": null,\r\n \"resyncStartTime\": null,\r\n \"progressHealth\": null,\r\n \"progressStatus\": null\r\n }\r\n ],\r\n \"diskResized\": \"NotResized\",\r\n \"masterTargetId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"sourceVmCpuCount\": 1,\r\n \"sourceVmRamSizeInMB\": 4095,\r\n \"osType\": \"Windows\",\r\n \"vhdName\": \"\\\\\\\\.\\\\PHYSICALDRIVE0\",\r\n \"osDiskId\": \"{3255470998}\",\r\n \"azureVMDiskDetails\": [],\r\n \"recoveryAzureVMName\": \"vi-win-vm-new\",\r\n \"recoveryAzureVMSize\": \"Standard_A2_v2\",\r\n \"recoveryAzureStorageAccount\": null,\r\n \"recoveryAzureLogStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Storage/storageAccounts/logstoracc123\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"00:50:56:86:0B:DB\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"Subnet-1\",\r\n \"vMNetworkName\": \"Intel(R) PRO/1000 MT Network Connection\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": null,\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"selectedSourceNicId\": \"00:50:56:86:0B:DB\",\r\n \"discoveryType\": \"vCenter\",\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"datastores\": [\r\n \"datastore78-ext2\"\r\n ],\r\n \"targetVmId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/virtualMachines/\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg\",\r\n \"recoveryAvailabilitySetId\": null,\r\n \"targetAvailabilityZone\": \"1\",\r\n \"targetProximityPlacementGroupId\": null,\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"NotSpecified\",\r\n \"validationErrors\": [],\r\n \"lastRpoCalculatedTime\": \"2021-01-22T08:46:10Z\",\r\n \"lastUpdateReceivedTime\": \"2021-01-22T08:50:25.8525019Z\",\r\n \"replicaId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef_replica_cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"seedManagedDiskId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/disks/asrseeddisk-vi_win_v-PHYSICAL-3124d3a3-cd9f-44ef-9eaa-e2325b7e497a\",\r\n \"replicaDiskType\": \"Standard_LRS\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"lastRecoveryPointReceived\": \"2021-01-22T08:58:03.405328Z\",\r\n \"firmwareType\": \"BIOS\",\r\n \"azureVmGeneration\": \"V1\",\r\n \"isAdditionalStatsAvailable\": false,\r\n \"totalDataTransferred\": 0,\r\n \"totalProgressHealth\": null,\r\n \"targetVmTags\": {},\r\n \"seedManagedDiskTags\": null,\r\n \"targetManagedDiskTags\": null,\r\n \"targetNicTags\": {}\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"4ddf2e75-abc5-4478-9c3b-301a1277b3e4\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy92aS13aW4tdm0/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryAzureVMName\": \"vi-win-vm\",\r\n \"recoveryAzureVMSize\": \"Standard_A2_v2\",\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"selectedTfoAzureNetworkId\": \"\",\r\n \"selectedSourceNicId\": \"00:50:56:86:0B:DB\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"00:50:56:86:0B:DB\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"selectionType\": \"SelectedByUser\"\r\n }\r\n ],\r\n \"licenseType\": \"WindowsServer\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"recoveryAzureV2ResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg\",\r\n \"useManagedDisks\": \"true\",\r\n \"targetAvailabilityZone\": \"2\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b54aa41b-736d-411a-9bd4-14cd2c833e9c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302397813)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907197813)\\/\",\"ClientRequestId\":\"5240352c-847b-4bad-b03f-365961233cd4-2021-01-22 08:59:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/56exFQdW8/yORpLPEAYZhXBHTQk2ok9S92fAfk2yAU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "850" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm/operationresults/18f345c2-7463-4062-afaa-14fce35f8bc4?api-version=2018-07-10" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/18f345c2-7463-4062-afaa-14fce35f8bc4", + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/18f345c2-7463-4062-afaa-14fce35f8bc4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationOperationStatus/18f345c2-7463-4062-afaa-14fce35f8bc4?api-version=2018-07-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b54aa41b-736d-411a-9bd4-14cd2c833e9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "83069424-f4cb-4fd3-b38c-29afbcde801e" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T085959Z:83069424-f4cb-4fd3-b38c-29afbcde801e" + ], + "Date": [ + "Fri, 22 Jan 2021 08:59:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/18f345c2-7463-4062-afaa-14fce35f8bc4?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Kb2JzLzE4ZjM0NWMyLTc0NjMtNDA2Mi1hZmFhLTE0ZmNlMzVmOGJjND9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b54aa41b-736d-411a-9bd4-14cd2c833e9c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611302399545)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611907199545)\\/\",\"ClientRequestId\":\"1c31ddbf-b920-45e0-a864-84aeefaa448b-2021-01-22 08:59:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BlH0O6392xcoTNSINrtiHYRXk3GKFOEST9URPDFJBA8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/18f345c2-7463-4062-afaa-14fce35f8bc4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b54aa41b-736d-411a-9bd4-14cd2c833e9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "782bc565-c112-4538-91fe-be0dcd292e81" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T085959Z:782bc565-c112-4538-91fe-be0dcd292e81" + ], + "Date": [ + "Fri, 22 Jan 2021 08:59:58 GMT" + ], + "Content-Length": [ + "1869" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/18f345c2-7463-4062-afaa-14fce35f8bc4\",\r\n \"name\": \"18f345c2-7463-4062-afaa-14fce35f8bc4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b54aa41b-736d-411a-9bd4-14cd2c833e9c ActivityId: 83069424-f4cb-4fd3-b38c-29afbcde801e\",\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\": \"1d4d0ecb-6bad-445d-8eba-94c67dfb9bb5\",\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-01-22T08:59:58.8240464Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"targetObjectName\": \"vi-win-vm-new\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"primaryVmName\": \"vi-win-vm-new\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"vi-win-vm-new\",\r\n \"protectionProfileId\": \"efede9dc-b50e-5723-93e9-4bd8604069c5\",\r\n \"primaryCloudId\": \"cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryCloudName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryVmmName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"VMware\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c" + } +} \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrV2ATests/V2AUpdateRPIWithPPG.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrV2ATests/V2AUpdateRPIWithPPG.json new file mode 100644 index 000000000000..7410d5b24134 --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrV2ATests/V2AUpdateRPIWithPPG.json @@ -0,0 +1,1201 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56843fec-0d8a-44fc-8b5a-4343560974cb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.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-ms-original-request-ids": [ + "421f68de-c584-4cbb-a251-f5caf4bceaf7", + "421f68de-c584-4cbb-a251-f5caf4bceaf7" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "421f68de-c584-4cbb-a251-f5caf4bceaf7" + ], + "x-ms-correlation-request-id": [ + "421f68de-c584-4cbb-a251-f5caf4bceaf7" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061912Z:421f68de-c584-4cbb-a251-f5caf4bceaf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1374" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vidyavault\",\r\n \"etag\": \"W/\\\"datetime'2021-01-22T05%3A15%3A43.2034947Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vijamivault\",\r\n \"etag\": \"W/\\\"datetime'2021-01-19T08%3A03%3A26.3037424Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vijamivault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n },\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"testvault\",\r\n \"etag\": \"W/\\\"datetime'2021-01-15T04%3A31%3A48.0780041Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/testvault\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"RS0\",\r\n \"tier\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6f41225-9b64-4bae-bf7f-f1aafe94b6d9" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292752536)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897552536)\\/\",\"ClientRequestId\":\"a9da184f-dea0-47c0-8392-4f5a7dc51d57-2021-01-22 06:19:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8m3fHN1ijZwSUKjmJNs1w9kzMDPHv3xrA1HKUlIrwbE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "d6f41225-9b64-4bae-bf7f-f1aafe94b6d9 1/22/2021 6:19:13 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d6f41225-9b64-4bae-bf7f-f1aafe94b6d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "98ecdb7a-1c04-4d9b-8b50-0daf5f577499" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061914Z:98ecdb7a-1c04-4d9b-8b50-0daf5f577499" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:13 GMT" + ], + "Content-Length": [ + "9420" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"hyperv\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/hyperv\",\r\n \"properties\": {\r\n \"friendlyName\": \"hyperv\",\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\": \"46e5f324-c3fa-508e-8a90-a3232d20dce0\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"HyperVSite\"\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n },\r\n {\r\n \"name\": \"f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"properties\": {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\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\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T06:05:52Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"machineCount\": \"1\",\r\n \"replicationPairCount\": \"1\",\r\n \"systemLoad\": \"4\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"16%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2362348374,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24461930837,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:54Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"osVersion\": null,\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"health\": \"Critical\",\r\n \"historicHealth\": \"Normal\",\r\n \"psStatsRefreshTime\": \"2021-01-22T06:09:19Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 4,\r\n \"throughputInBytes\": 4299319,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": null,\r\n \"marsRegistrationStatus\": null\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"name\": \"WIN-B6L6OJO1E6Q\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T06:09:19Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"retentionVolumes\": [],\r\n \"dataStores\": [\r\n {\r\n \"symbolicName\": \"datastore1\",\r\n \"uuid\": \"5fda103a-1a1e7a80-f1bd-4cd98f63b7b7\",\r\n \"capacity\": \"550.75\",\r\n \"freeSpace\": \"206.12\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"datastore78-ext2\",\r\n \"uuid\": \"5de660af-54cd74db-e392-f8bc124d6486\",\r\n \"capacity\": \"5119.75\",\r\n \"freeSpace\": \"419.13\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"Newdatastore\",\r\n \"uuid\": \"5fe1f478-e5a7e09a-702b-4cd98f63b7b7\",\r\n \"capacity\": \"3071.75\",\r\n \"freeSpace\": \"560.02\",\r\n \"type\": \"VMFS\"\r\n }\r\n ],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"diskCount\": 1,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"marsAgentVersion\": \"2.0.9165.0\",\r\n \"marsAgentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9165.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [\r\n {\r\n \"accountId\": \"1\",\r\n \"accountName\": \"winacc\"\r\n },\r\n {\r\n \"accountId\": \"2\",\r\n \"accountName\": \"vcenteracc\"\r\n }\r\n ],\r\n \"replicationPairCount\": \"1\",\r\n \"processServerCount\": \"1\",\r\n \"agentCount\": \"1\",\r\n \"protectedServers\": \"1\",\r\n \"systemLoad\": \"4\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"16%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2362348374,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24461930837,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"hostName\": \"WIN-B6L6OJO1E6Q\",\r\n \"lastHeartbeat\": \"2021-01-22T06:09:39.0026387Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:53Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"psTemplateVersion\": \"202101.07.00\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"ConfigurationServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"816\",\r\n \"summaryMessage\": \"Configuration server or Azure Site Recovery Provider version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Configuration Server or Azure Site Recovery Provider ended on (01/01/0001). The service is currently running with limited functionality, upgrade Configuration Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Configuration Server or Azure Site Recovery Provider has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Configuration Server or Azure Site Recovery Provider now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4698556Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTg/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d6f41225-9b64-4bae-bf7f-f1aafe94b6d9" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292754189)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897554189)\\/\",\"ClientRequestId\":\"3a86d14b-47ba-44bf-8887-2a230908b77e-2021-01-22 06:19:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"s7VbwMqYN3fLD37Xcbioc06cbUJOIvAd7LMOeKlzctY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "d6f41225-9b64-4bae-bf7f-f1aafe94b6d9 1/22/2021 6:19:14 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d6f41225-9b64-4bae-bf7f-f1aafe94b6d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "79a5ce11-b998-44b3-a279-7cc32a26d24a" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061914Z:79a5ce11-b998-44b3-a279-7cc32a26d24a" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:14 GMT" + ], + "Content-Length": [ + "8776" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58\",\r\n \"properties\": {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\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\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"VMware\",\r\n \"processServers\": [\r\n {\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T06:05:52Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"mobilityServiceUpdates\": [\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Windows\"\r\n },\r\n {\r\n \"version\": \"9.31.0.0\",\r\n \"rebootStatus\": \"NotRequired\",\r\n \"osType\": \"Linux\"\r\n }\r\n ],\r\n \"hostId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"machineCount\": \"1\",\r\n \"replicationPairCount\": \"1\",\r\n \"systemLoad\": \"4\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"16%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2362348374,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24461930837,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"psServiceStatus\": \"Running\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:54Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"osVersion\": null,\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"health\": \"Critical\",\r\n \"psStatsRefreshTime\": \"2021-01-22T06:09:19Z\",\r\n \"throughputUploadPendingDataInBytes\": 0,\r\n \"throughputInMBps\": 4,\r\n \"throughputInBytes\": 4299319,\r\n \"throughputStatus\": \"Green\",\r\n \"marsCommunicationStatus\": null,\r\n \"marsRegistrationStatus\": null\r\n }\r\n ],\r\n \"masterTargetServers\": [\r\n {\r\n \"id\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"name\": \"WIN-B6L6OJO1E6Q\",\r\n \"osType\": \"Windows\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"lastHeartbeat\": \"2021-01-22T06:09:19Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"retentionVolumes\": [],\r\n \"dataStores\": [\r\n {\r\n \"symbolicName\": \"datastore1\",\r\n \"uuid\": \"5fda103a-1a1e7a80-f1bd-4cd98f63b7b7\",\r\n \"capacity\": \"550.75\",\r\n \"freeSpace\": \"206.12\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"datastore78-ext2\",\r\n \"uuid\": \"5de660af-54cd74db-e392-f8bc124d6486\",\r\n \"capacity\": \"5119.75\",\r\n \"freeSpace\": \"419.13\",\r\n \"type\": \"VMFS\"\r\n },\r\n {\r\n \"symbolicName\": \"Newdatastore\",\r\n \"uuid\": \"5fe1f478-e5a7e09a-702b-4cd98f63b7b7\",\r\n \"capacity\": \"3071.75\",\r\n \"freeSpace\": \"560.02\",\r\n \"type\": \"VMFS\"\r\n }\r\n ],\r\n \"validationErrors\": [],\r\n \"healthErrors\": [\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"diskCount\": 1,\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"marsAgentVersion\": \"2.0.9165.0\",\r\n \"marsAgentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n },\r\n \"marsAgentVersionDetails\": {\r\n \"version\": \"2.0.9165.0\",\r\n \"expiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"status\": \"UpdateRequired\"\r\n }\r\n }\r\n ],\r\n \"runAsAccounts\": [\r\n {\r\n \"accountId\": \"1\",\r\n \"accountName\": \"winacc\"\r\n },\r\n {\r\n \"accountId\": \"2\",\r\n \"accountName\": \"vcenteracc\"\r\n }\r\n ],\r\n \"replicationPairCount\": \"1\",\r\n \"processServerCount\": \"1\",\r\n \"agentCount\": \"1\",\r\n \"protectedServers\": \"1\",\r\n \"systemLoad\": \"4\",\r\n \"systemLoadStatus\": \"Green\",\r\n \"cpuLoad\": \"16%\",\r\n \"cpuLoadStatus\": \"Green\",\r\n \"totalMemoryInBytes\": 5032697856,\r\n \"availableMemoryInBytes\": 2362348374,\r\n \"memoryUsageStatus\": \"Green\",\r\n \"totalSpaceInBytes\": 42580570112,\r\n \"availableSpaceInBytes\": 24461930837,\r\n \"spaceUsageStatus\": \"Green\",\r\n \"webLoad\": \"0\",\r\n \"webLoadStatus\": \"Green\",\r\n \"databaseServerLoad\": \"0.25\",\r\n \"databaseServerLoadStatus\": \"Green\",\r\n \"csServiceStatus\": \"Running\",\r\n \"ipAddress\": \"10.150.168.161\",\r\n \"agentVersion\": \"9.31.0.0\",\r\n \"hostName\": \"WIN-B6L6OJO1E6Q\",\r\n \"lastHeartbeat\": \"2021-01-22T06:09:39.0026387Z\",\r\n \"versionStatus\": \"NotSupported\",\r\n \"sslCertExpiryDate\": \"2024-01-21T18:02:53Z\",\r\n \"sslCertExpiryRemainingDays\": 1094,\r\n \"psTemplateVersion\": \"202101.07.00\",\r\n \"agentExpiryDate\": \"0001-01-01T00:00:00\",\r\n \"agentVersionDetails\": {\r\n \"version\": \"9.31.0.0\",\r\n \"expiryDate\": \"0001-01-01T00:00:00\",\r\n \"status\": \"NotSupported\"\r\n }\r\n },\r\n \"healthErrorDetails\": [\r\n {\r\n \"errorSource\": \"ConfigurationServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"816\",\r\n \"summaryMessage\": \"Configuration server or Azure Site Recovery Provider version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Configuration Server or Azure Site Recovery Provider ended on (01/01/0001). The service is currently running with limited functionality, upgrade Configuration Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Configuration Server or Azure Site Recovery Provider has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Configuration Server or Azure Site Recovery Provider now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4698556Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"MasterTarget\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"822\",\r\n \"summaryMessage\": \"Master Target server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Master Target server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Master Target server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Master Target server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Master Target server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.4198507Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n },\r\n {\r\n \"errorSource\": \"ProcessServer\",\r\n \"errorType\": null,\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"819\",\r\n \"summaryMessage\": \"Process server version is no longer supported.\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery software (9.31.0.0) running on your Process Server ended on (01/01/0001). The service is currently running with limited functionality, upgrade Process Server to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Process Server has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Process Server now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-21T10:17:16.3847973Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\"\r\n }\r\n ],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4a812cb-3cd9-4dd9-bc7a-b2264757b985" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292754566)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897554566)\\/\",\"ClientRequestId\":\"e34188e4-b5a4-4038-be14-c10ded28e1a3-2021-01-22 06:19:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"p+oOokbkTDtXmncvqPHgtob4KGX7fQ9dXd4KOnWNu4c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "d4a812cb-3cd9-4dd9-bc7a-b2264757b985 1/22/2021 6:19:14 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d4a812cb-3cd9-4dd9-bc7a-b2264757b985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "0a8f0b9d-9afd-4637-bde7-a279da6f43d7" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061914Z:0a8f0b9d-9afd-4637-bde7-a279da6f43d7" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:14 GMT" + ], + "Content-Length": [ + "676" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"name\": \"cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"fabricType\": \"VMware\",\r\n \"protectedItemCount\": 1,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2Y/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4a812cb-3cd9-4dd9-bc7a-b2264757b985" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292754953)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897554953)\\/\",\"ClientRequestId\":\"8c8c03b6-ee22-4a52-b3a5-1558159813cc-2021-01-22 06:19:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IzrjlbXZHojb3JWmdnwEpeML4hzsLjTp0CM47LJw6JE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "d4a812cb-3cd9-4dd9-bc7a-b2264757b985 1/22/2021 6:19:15 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d4a812cb-3cd9-4dd9-bc7a-b2264757b985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "a6393658-7932-431d-b907-af54546fdeb7" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061915Z:a6393658-7932-431d-b907-af54546fdeb7" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:15 GMT" + ], + "Content-Length": [ + "648" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"name\": \"cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"friendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"fabricType\": \"VMware\",\r\n \"protectedItemCount\": 1,\r\n \"pairingStatus\": \"Paired\",\r\n \"role\": \"Primary\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4a812cb-3cd9-4dd9-bc7a-b2264757b985" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292755309)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897555309)\\/\",\"ClientRequestId\":\"cf940efc-0cd8-4fa4-816f-968ea3d82aed-2021-01-22 06:19:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6iueRCHbl8L/VNTpAKxnYWwUwHU7U2Bm3HkjjsP5qD8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "d4a812cb-3cd9-4dd9-bc7a-b2264757b985 1/22/2021 6:19:15 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d4a812cb-3cd9-4dd9-bc7a-b2264757b985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "f521624e-3a38-4e7a-9f5c-abb0ea9b4aa7" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061915Z:f521624e-3a38-4e7a-9f5c-abb0ea9b4aa7" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:15 GMT" + ], + "Content-Length": [ + "2572" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/ae9dfb2d-7c1b-4df9-8947-b742d6172721\",\r\n \"name\": \"ae9dfb2d-7c1b-4df9-8947-b742d6172721\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"targetProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy-failback\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"sourceFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"targetFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"policyFriendlyName\": \"test-policy-failback\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"name\": \"f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"sourceFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"test-policy\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy-failback?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Qb2xpY2llcy90ZXN0LXBvbGljeS1mYWlsYmFjaz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4a812cb-3cd9-4dd9-bc7a-b2264757b985" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292755778)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897555778)\\/\",\"ClientRequestId\":\"190c6f51-0869-4edd-b1b6-0502b2afc2e8-2021-01-22 06:19:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LrNnv5bWLi2n1G2yV6LZ2+rCDMGrEfys3ftFoMWSo3A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "d4a812cb-3cd9-4dd9-bc7a-b2264757b985 1/22/2021 6:19:15 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d4a812cb-3cd9-4dd9-bc7a-b2264757b985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "5171c217-af79-4177-ba6a-fe9f678a8e0a" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061916Z:5171c217-af79-4177-ba6a-fe9f678a8e0a" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:15 GMT" + ], + "Content-Length": [ + "511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy-failback\",\r\n \"name\": \"test-policy-failback\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy-failback\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMage\",\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Qb2xpY2llcy90ZXN0LXBvbGljeT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4a812cb-3cd9-4dd9-bc7a-b2264757b985" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292756126)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897556126)\\/\",\"ClientRequestId\":\"c90a0a34-cec5-4732-ab92-1cb8785dc57f-2021-01-22 06:19:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mfSGP21mAO+ctBXTbHcVcv4boqii65TUKG/vAASvDWE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "d4a812cb-3cd9-4dd9-bc7a-b2264757b985 1/22/2021 6:19:16 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d4a812cb-3cd9-4dd9-bc7a-b2264757b985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "540cf511-0bfb-48a8-bc61-77fba62b5cf3" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061916Z:540cf511-0bfb-48a8-bc61-77fba62b5cf3" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:16 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"name\": \"test-policy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Qb2xpY2llcy90ZXN0LXBvbGljeT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed6a3baa-6528-4eaa-9f88-28463a036d36" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292756542)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897556542)\\/\",\"ClientRequestId\":\"27a441af-e004-46bf-bc12-b7561c71d884-2021-01-22 06:19:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pk18hoNlLxRPVID7BkZBUN2/zHZdU0kVztQrHj/n8O8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "ed6a3baa-6528-4eaa-9f88-28463a036d36 1/22/2021 6:19:16 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ed6a3baa-6528-4eaa-9f88-28463a036d36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "b77458f5-b7e5-4877-8f60-26f824861586" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061916Z:b77458f5-b7e5-4877-8f60-26f824861586" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:16 GMT" + ], + "Content-Length": [ + "529" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"name\": \"test-policy\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"test-policy\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"recoveryPointThresholdInMinutes\": 60,\r\n \"recoveryPointHistory\": 1440,\r\n \"appConsistentFrequencyInMinutes\": 60,\r\n \"multiVmSyncStatus\": \"Enabled\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/f858b936-ee57-44c4-9ff9-2907d418fbd2?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvZjg1OGI5MzYtZWU1Ny00NGM0LTlmZjktMjkwN2Q0MThmYmQyP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0d4b2b5-eae3-4d90-a6c7-ca9535b1eae8" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292756870)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897556870)\\/\",\"ClientRequestId\":\"b4df4b42-0f03-4b96-84c8-748c4cf76bbb-2021-01-22 06:19:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JKM6Vqr7BveUBM2LiWDFBqDZ8uCQiQnuav2ddxCrsIc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "f0d4b2b5-eae3-4d90-a6c7-ca9535b1eae8 1/22/2021 6:19:17 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "f0d4b2b5-eae3-4d90-a6c7-ca9535b1eae8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "8605bfdf-2b73-428e-add3-7986e934d980" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061917Z:8605bfdf-2b73-428e-add3-7986e934d980" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:16 GMT" + ], + "Content-Length": [ + "1125" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectionContainerMappings/f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"name\": \"f858b936-ee57-44c4-9ff9-2907d418fbd2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"Microsoft Azure\",\r\n \"targetProtectionContainerFriendlyName\": \"Microsoft Azure\",\r\n \"providerSpecificDetails\": null,\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"sourceFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"targetFabricFriendlyName\": \"Microsoft Azure\",\r\n \"policyFriendlyName\": \"test-policy\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57bcc500-90bc-4dd6-a6b2-eb125e99f9bc" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292757241)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897557241)\\/\",\"ClientRequestId\":\"65eae2dc-be13-44e6-a386-c55ecef206f5-2021-01-22 06:19:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"71j7v7gnneuOI0/pi9WMd0k86A7BsEyNkuiHwsKjVCM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "57bcc500-90bc-4dd6-a6b2-eb125e99f9bc 1/22/2021 6:19:17 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "57bcc500-90bc-4dd6-a6b2-eb125e99f9bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "a8292e65-818e-4335-91c0-312f285339b2" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061917Z:a8292e65-818e-4335-91c0-312f285339b2" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:17 GMT" + ], + "Content-Length": [ + "8268" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm\",\r\n \"name\": \"vi-win-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vi-win-vm-new\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"primaryFabricProvider\": \"InMageFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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\": \"ReplicationUnitProviderErrorOnPrimary\",\r\n \"errorType\": \"102\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"78183\",\r\n \"summaryMessage\": \"Mobility service version is nearing End-Of-Support\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery mobility service(9.32.0.0) running on your protected virtual machines ended on (01/07/2021). The service is currently running with limited functionality, upgrade mobility service to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Mobility service has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Mobility service now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:42:48.4447387Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"2:102\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\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 'vi-win-vm-new'.\",\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-01-22T06:17:47.841218Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"policyFriendlyName\": \"test-policy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"infrastructureVmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"protectionStage\": \"DifferentialSync\",\r\n \"vmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"resyncProgressPercentage\": 0,\r\n \"rpoInSeconds\": 476,\r\n \"compressedDataRateInMB\": 0.0,\r\n \"uncompressedDataRateInMB\": 0.0,\r\n \"ipAddress\": \"10.150.168.181\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"isAgentUpdateRequired\": \"NotRequired\",\r\n \"isRebootAfterUpdateRequired\": \"NotRequired\",\r\n \"lastHeartbeat\": \"2021-01-22T06:08:35Z\",\r\n \"processServerId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"processServerName\": \"WIN-B6L6OJO1E6Q\",\r\n \"multiVmGroupId\": \"70374ed8-5fe0-4271-a73b-85f9dc9005cd\",\r\n \"multiVmGroupName\": \"70374ed8-5fe0-4271-a73b-85f9dc9005cd\",\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"protectedDisks\": [],\r\n \"diskResized\": null,\r\n \"masterTargetId\": null,\r\n \"sourceVmCpuCount\": 0,\r\n \"sourceVmRamSizeInMB\": 0,\r\n \"osType\": \"Windows\",\r\n \"vhdName\": null,\r\n \"osDiskId\": null,\r\n \"azureVMDiskDetails\": null,\r\n \"recoveryAzureVMName\": \"vi-win-vm\",\r\n \"recoveryAzureVMSize\": \"Standard_A2_v2\",\r\n \"recoveryAzureStorageAccount\": null,\r\n \"recoveryAzureLogStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Storage/storageAccounts/logstoracc123\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"00:50:56:86:0B:DB\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"Subnet-1\",\r\n \"vMNetworkName\": \"Intel(R) PRO/1000 MT Network Connection\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"selectedSourceNicId\": \"00:50:56:86:0B:DB\",\r\n \"discoveryType\": \"vCenter\",\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"datastores\": [\r\n \"datastore78-ext2\"\r\n ],\r\n \"targetVmId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/virtualMachines/\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/proximityPlacementGroups/ppgus\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"WindowsServer\",\r\n \"validationErrors\": [],\r\n \"lastRpoCalculatedTime\": \"2021-01-22T06:06:58Z\",\r\n \"lastUpdateReceivedTime\": \"2021-01-22T06:09:39.6432666Z\",\r\n \"replicaId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef_replica_cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"protectedManagedDisks\": [],\r\n \"lastRecoveryPointReceived\": \"2021-01-22T06:09:01.1793481Z\",\r\n \"firmwareType\": \"BIOS\",\r\n \"azureVmGeneration\": \"V1\",\r\n \"isAdditionalStatsAvailable\": false,\r\n \"totalDataTransferred\": 0,\r\n \"totalProgressHealth\": null,\r\n \"targetVmTags\": {},\r\n \"seedManagedDiskTags\": null,\r\n \"targetManagedDiskTags\": null,\r\n \"targetNicTags\": {}\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"603b4e0f-4285-4c2c-bb8f-d8d5554bcc23\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87838601-3ca2-427c-af15-649288330959" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292761154)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897561154)\\/\",\"ClientRequestId\":\"1b7ab012-b493-4d59-a748-51b2ec3a3c5d-2021-01-22 06:19:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8cjo7DbVd5b0R7aC5f64Qiep9k1aS8V5OiEGCUqx1Uo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "87838601-3ca2-427c-af15-649288330959 1/22/2021 6:19:21 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "87838601-3ca2-427c-af15-649288330959" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "b8a90f53-46ce-4036-a32c-fafaadb6ebb6" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061921Z:b8a90f53-46ce-4036-a32c-fafaadb6ebb6" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:21 GMT" + ], + "Content-Length": [ + "8269" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm\",\r\n \"name\": \"vi-win-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vi-win-vm-new\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"primaryFabricProvider\": \"InMageFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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\": \"ReplicationUnitProviderErrorOnPrimary\",\r\n \"errorType\": \"102\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"78183\",\r\n \"summaryMessage\": \"Mobility service version is nearing End-Of-Support\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery mobility service(9.32.0.0) running on your protected virtual machines ended on (01/07/2021). The service is currently running with limited functionality, upgrade mobility service to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Mobility service has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Mobility service now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:42:48.4447387Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"2:102\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\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 'vi-win-vm-new'.\",\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-01-22T06:17:47.841218Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"policyFriendlyName\": \"test-policy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"infrastructureVmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"protectionStage\": \"DifferentialSync\",\r\n \"vmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"resyncProgressPercentage\": 0,\r\n \"rpoInSeconds\": 476,\r\n \"compressedDataRateInMB\": 0.0,\r\n \"uncompressedDataRateInMB\": 0.0,\r\n \"ipAddress\": \"10.150.168.181\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"isAgentUpdateRequired\": \"NotRequired\",\r\n \"isRebootAfterUpdateRequired\": \"NotRequired\",\r\n \"lastHeartbeat\": \"2021-01-22T06:08:35Z\",\r\n \"processServerId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"processServerName\": \"WIN-B6L6OJO1E6Q\",\r\n \"multiVmGroupId\": \"70374ed8-5fe0-4271-a73b-85f9dc9005cd\",\r\n \"multiVmGroupName\": \"70374ed8-5fe0-4271-a73b-85f9dc9005cd\",\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"protectedDisks\": [],\r\n \"diskResized\": null,\r\n \"masterTargetId\": null,\r\n \"sourceVmCpuCount\": 0,\r\n \"sourceVmRamSizeInMB\": 0,\r\n \"osType\": \"Windows\",\r\n \"vhdName\": null,\r\n \"osDiskId\": null,\r\n \"azureVMDiskDetails\": null,\r\n \"recoveryAzureVMName\": \"vi-win-vm\",\r\n \"recoveryAzureVMSize\": \"Standard_A2_v2\",\r\n \"recoveryAzureStorageAccount\": null,\r\n \"recoveryAzureLogStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Storage/storageAccounts/logstoracc123\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"00:50:56:86:0B:DB\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"Subnet-1\",\r\n \"vMNetworkName\": \"Intel(R) PRO/1000 MT Network Connection\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"selectedSourceNicId\": \"00:50:56:86:0B:DB\",\r\n \"discoveryType\": \"vCenter\",\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"datastores\": [\r\n \"datastore78-ext2\"\r\n ],\r\n \"targetVmId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/virtualMachines/\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/proximityPlacementGroups/ppgnew\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"WindowsServer\",\r\n \"validationErrors\": [],\r\n \"lastRpoCalculatedTime\": \"2021-01-22T06:06:58Z\",\r\n \"lastUpdateReceivedTime\": \"2021-01-22T06:09:39.6432666Z\",\r\n \"replicaId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef_replica_cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"protectedManagedDisks\": [],\r\n \"lastRecoveryPointReceived\": \"2021-01-22T06:09:01.1793481Z\",\r\n \"firmwareType\": \"BIOS\",\r\n \"azureVmGeneration\": \"V1\",\r\n \"isAdditionalStatsAvailable\": false,\r\n \"totalDataTransferred\": 0,\r\n \"totalProgressHealth\": null,\r\n \"targetVmTags\": {},\r\n \"seedManagedDiskTags\": null,\r\n \"targetManagedDiskTags\": null,\r\n \"targetNicTags\": {}\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"603b4e0f-4285-4c2c-bb8f-d8d5554bcc23\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy92aS13aW4tdm0/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "57bcc500-90bc-4dd6-a6b2-eb125e99f9bc" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292757719)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897557719)\\/\",\"ClientRequestId\":\"ab297504-fdea-4e04-a476-140d86b08b90-2021-01-22 06:19:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"peEocHFb20GtUdW42xOMMZjlMNHtqNmOXtU+mx97qoM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "57bcc500-90bc-4dd6-a6b2-eb125e99f9bc 1/22/2021 6:19:17 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "57bcc500-90bc-4dd6-a6b2-eb125e99f9bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "1eda8825-1a88-473c-ab22-15828e20d502" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061918Z:1eda8825-1a88-473c-ab22-15828e20d502" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:17 GMT" + ], + "Content-Length": [ + "9240" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm\",\r\n \"name\": \"vi-win-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vi-win-vm-new\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"primaryFabricProvider\": \"InMageFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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\": \"ReplicationUnitProviderErrorOnPrimary\",\r\n \"errorType\": \"102\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"78183\",\r\n \"summaryMessage\": \"Mobility service version is nearing End-Of-Support\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery mobility service(9.32.0.0) running on your protected virtual machines ended on (01/07/2021). The service is currently running with limited functionality, upgrade mobility service to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Mobility service has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Mobility service now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:42:48.4447387Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"2:102\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\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 'vi-win-vm-new'.\",\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-01-22T06:17:47.841218Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"policyFriendlyName\": \"test-policy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"infrastructureVmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"protectionStage\": \"DifferentialSync\",\r\n \"vmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"resyncProgressPercentage\": 0,\r\n \"rpoInSeconds\": 476,\r\n \"compressedDataRateInMB\": 0.0,\r\n \"uncompressedDataRateInMB\": 0.0,\r\n \"ipAddress\": \"10.150.168.181\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"isAgentUpdateRequired\": \"NotRequired\",\r\n \"isRebootAfterUpdateRequired\": \"NotRequired\",\r\n \"lastHeartbeat\": \"2021-01-22T06:08:35Z\",\r\n \"processServerId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"processServerName\": \"WIN-B6L6OJO1E6Q\",\r\n \"multiVmGroupId\": \"70374ed8-5fe0-4271-a73b-85f9dc9005cd\",\r\n \"multiVmGroupName\": \"70374ed8-5fe0-4271-a73b-85f9dc9005cd\",\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"protectedDisks\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"diskName\": \"Disk0\",\r\n \"protectionStage\": \"DifferentialSync\",\r\n \"healthErrorCode\": null,\r\n \"rpoInSeconds\": 476,\r\n \"resyncRequired\": \"NotRequired\",\r\n \"resyncProgressPercentage\": 0,\r\n \"resyncDurationInSeconds\": 869,\r\n \"diskCapacityInBytes\": 42949672960,\r\n \"fileSystemCapacityInBytes\": 42949672960,\r\n \"sourceDataInMegaBytes\": 0.11,\r\n \"psDataInMegaBytes\": 0.32,\r\n \"targetDataInMegaBytes\": 0.0,\r\n \"diskResized\": \"NotResized\",\r\n \"lastRpoCalculatedTime\": \"2021-01-22T06:06:58Z\",\r\n \"resyncProcessedBytes\": 0,\r\n \"resyncTotalTransferredBytes\": 0,\r\n \"resyncLast15MinutesTransferredBytes\": 0,\r\n \"resyncLastDataTransferTimeUTC\": null,\r\n \"resyncStartTime\": null,\r\n \"progressHealth\": null,\r\n \"progressStatus\": null\r\n }\r\n ],\r\n \"diskResized\": \"NotResized\",\r\n \"masterTargetId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"sourceVmCpuCount\": 1,\r\n \"sourceVmRamSizeInMB\": 4095,\r\n \"osType\": \"Windows\",\r\n \"vhdName\": \"\\\\\\\\.\\\\PHYSICALDRIVE0\",\r\n \"osDiskId\": \"{3255470998}\",\r\n \"azureVMDiskDetails\": [],\r\n \"recoveryAzureVMName\": \"vi-win-vm\",\r\n \"recoveryAzureVMSize\": \"Standard_A2_v2\",\r\n \"recoveryAzureStorageAccount\": null,\r\n \"recoveryAzureLogStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Storage/storageAccounts/logstoracc123\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"00:50:56:86:0B:DB\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"Subnet-1\",\r\n \"vMNetworkName\": \"Intel(R) PRO/1000 MT Network Connection\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"selectedSourceNicId\": \"00:50:56:86:0B:DB\",\r\n \"discoveryType\": \"vCenter\",\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"datastores\": [\r\n \"datastore78-ext2\"\r\n ],\r\n \"targetVmId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/virtualMachines/\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/proximityPlacementGroups/ppgus\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"WindowsServer\",\r\n \"validationErrors\": [],\r\n \"lastRpoCalculatedTime\": \"2021-01-22T06:06:58Z\",\r\n \"lastUpdateReceivedTime\": \"2021-01-22T06:09:39.6432666Z\",\r\n \"replicaId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef_replica_cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"seedManagedDiskId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/disks/asrseeddisk-vi_win_v-PHYSICAL-91144b43-2577-45d4-9764-bbae61a2271b\",\r\n \"replicaDiskType\": \"Standard_LRS\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"lastRecoveryPointReceived\": \"2021-01-22T06:09:01.1793481Z\",\r\n \"firmwareType\": \"BIOS\",\r\n \"azureVmGeneration\": \"V1\",\r\n \"isAdditionalStatsAvailable\": false,\r\n \"totalDataTransferred\": 0,\r\n \"totalProgressHealth\": null,\r\n \"targetVmTags\": {},\r\n \"seedManagedDiskTags\": null,\r\n \"targetManagedDiskTags\": null,\r\n \"targetNicTags\": {}\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"603b4e0f-4285-4c2c-bb8f-d8d5554bcc23\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy92aS13aW4tdm0/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e06cbf8e-94cc-4858-a853-a6eb2a3d3589" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292758232)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897558232)\\/\",\"ClientRequestId\":\"62277ae5-ce44-45c6-aba4-281acd4d966e-2021-01-22 06:19:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/pghAy5HklMiOXjuw9y1pNy+DbxFeZpnQweEaiQVibw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "e06cbf8e-94cc-4858-a853-a6eb2a3d3589 1/22/2021 6:19:18 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e06cbf8e-94cc-4858-a853-a6eb2a3d3589" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "971fd8a6-d8c3-49e1-a996-311405d3fe6b" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061918Z:971fd8a6-d8c3-49e1-a996-311405d3fe6b" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:18 GMT" + ], + "Content-Length": [ + "9240" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm\",\r\n \"name\": \"vi-win-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vi-win-vm-new\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"primaryFabricProvider\": \"InMageFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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\": \"ReplicationUnitProviderErrorOnPrimary\",\r\n \"errorType\": \"102\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"78183\",\r\n \"summaryMessage\": \"Mobility service version is nearing End-Of-Support\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery mobility service(9.32.0.0) running on your protected virtual machines ended on (01/07/2021). The service is currently running with limited functionality, upgrade mobility service to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Mobility service has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Mobility service now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:42:48.4447387Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"2:102\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\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 'vi-win-vm-new'.\",\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-01-22T06:17:47.841218Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"policyFriendlyName\": \"test-policy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"infrastructureVmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"protectionStage\": \"DifferentialSync\",\r\n \"vmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"resyncProgressPercentage\": 0,\r\n \"rpoInSeconds\": 476,\r\n \"compressedDataRateInMB\": 0.0,\r\n \"uncompressedDataRateInMB\": 0.0,\r\n \"ipAddress\": \"10.150.168.181\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"isAgentUpdateRequired\": \"NotRequired\",\r\n \"isRebootAfterUpdateRequired\": \"NotRequired\",\r\n \"lastHeartbeat\": \"2021-01-22T06:08:35Z\",\r\n \"processServerId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"processServerName\": \"WIN-B6L6OJO1E6Q\",\r\n \"multiVmGroupId\": \"70374ed8-5fe0-4271-a73b-85f9dc9005cd\",\r\n \"multiVmGroupName\": \"70374ed8-5fe0-4271-a73b-85f9dc9005cd\",\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"protectedDisks\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"diskName\": \"Disk0\",\r\n \"protectionStage\": \"DifferentialSync\",\r\n \"healthErrorCode\": null,\r\n \"rpoInSeconds\": 476,\r\n \"resyncRequired\": \"NotRequired\",\r\n \"resyncProgressPercentage\": 0,\r\n \"resyncDurationInSeconds\": 869,\r\n \"diskCapacityInBytes\": 42949672960,\r\n \"fileSystemCapacityInBytes\": 42949672960,\r\n \"sourceDataInMegaBytes\": 0.11,\r\n \"psDataInMegaBytes\": 0.32,\r\n \"targetDataInMegaBytes\": 0.0,\r\n \"diskResized\": \"NotResized\",\r\n \"lastRpoCalculatedTime\": \"2021-01-22T06:06:58Z\",\r\n \"resyncProcessedBytes\": 0,\r\n \"resyncTotalTransferredBytes\": 0,\r\n \"resyncLast15MinutesTransferredBytes\": 0,\r\n \"resyncLastDataTransferTimeUTC\": null,\r\n \"resyncStartTime\": null,\r\n \"progressHealth\": null,\r\n \"progressStatus\": null\r\n }\r\n ],\r\n \"diskResized\": \"NotResized\",\r\n \"masterTargetId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"sourceVmCpuCount\": 1,\r\n \"sourceVmRamSizeInMB\": 4095,\r\n \"osType\": \"Windows\",\r\n \"vhdName\": \"\\\\\\\\.\\\\PHYSICALDRIVE0\",\r\n \"osDiskId\": \"{3255470998}\",\r\n \"azureVMDiskDetails\": [],\r\n \"recoveryAzureVMName\": \"vi-win-vm\",\r\n \"recoveryAzureVMSize\": \"Standard_A2_v2\",\r\n \"recoveryAzureStorageAccount\": null,\r\n \"recoveryAzureLogStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Storage/storageAccounts/logstoracc123\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"00:50:56:86:0B:DB\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"Subnet-1\",\r\n \"vMNetworkName\": \"Intel(R) PRO/1000 MT Network Connection\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"selectedSourceNicId\": \"00:50:56:86:0B:DB\",\r\n \"discoveryType\": \"vCenter\",\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"datastores\": [\r\n \"datastore78-ext2\"\r\n ],\r\n \"targetVmId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/virtualMachines/\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/proximityPlacementGroups/ppgus\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"WindowsServer\",\r\n \"validationErrors\": [],\r\n \"lastRpoCalculatedTime\": \"2021-01-22T06:06:58Z\",\r\n \"lastUpdateReceivedTime\": \"2021-01-22T06:09:39.6432666Z\",\r\n \"replicaId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef_replica_cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"seedManagedDiskId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/disks/asrseeddisk-vi_win_v-PHYSICAL-91144b43-2577-45d4-9764-bbae61a2271b\",\r\n \"replicaDiskType\": \"Standard_LRS\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"lastRecoveryPointReceived\": \"2021-01-22T06:09:01.1793481Z\",\r\n \"firmwareType\": \"BIOS\",\r\n \"azureVmGeneration\": \"V1\",\r\n \"isAdditionalStatsAvailable\": false,\r\n \"totalDataTransferred\": 0,\r\n \"totalProgressHealth\": null,\r\n \"targetVmTags\": {},\r\n \"seedManagedDiskTags\": null,\r\n \"targetManagedDiskTags\": null,\r\n \"targetNicTags\": {}\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"603b4e0f-4285-4c2c-bb8f-d8d5554bcc23\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy92aS13aW4tdm0/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87838601-3ca2-427c-af15-649288330959" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292761527)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897561527)\\/\",\"ClientRequestId\":\"5aab5bc6-5e8c-462b-a575-fc1ef68f475e-2021-01-22 06:19:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5DN5QV5NYeYp4pg9XPz5qfBWMW1LDEehBBJghoOLwz8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "87838601-3ca2-427c-af15-649288330959 1/22/2021 6:19:21 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "87838601-3ca2-427c-af15-649288330959" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "03560161-5996-4e7a-93b7-fc353ddc17c9" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061921Z:03560161-5996-4e7a-93b7-fc353ddc17c9" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:21 GMT" + ], + "Content-Length": [ + "9241" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm\",\r\n \"name\": \"vi-win-vm\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"vi-win-vm-new\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectableItems/f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"recoveryServicesProviderId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationRecoveryServicesProviders/50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryFabricFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"primaryFabricProvider\": \"InMageFabric\",\r\n \"recoveryFabricFriendlyName\": \"Microsoft Azure\",\r\n \"recoveryFabricId\": \"Microsoft Azure\",\r\n \"primaryProtectionContainerFriendlyName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryProtectionContainerFriendlyName\": \"Microsoft Azure\",\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\": \"ReplicationUnitProviderErrorOnPrimary\",\r\n \"errorType\": \"102\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"VersionExpiry\",\r\n \"errorCode\": \"78183\",\r\n \"summaryMessage\": \"Mobility service version is nearing End-Of-Support\",\r\n \"errorMessage\": \"The support for the version of Azure Site Recovery mobility service(9.32.0.0) running on your protected virtual machines ended on (01/07/2021). The service is currently running with limited functionality, upgrade mobility service to the latest version to resume full functionality. Read more https://aka.ms/asragentexpiry \",\r\n \"possibleCauses\": \"The Mobility service has not been updated to the latest version. The latest version available is (9.40.0.0).\",\r\n \"recommendedAction\": \"Upgrade the Mobility service now to restore full functionality on your Recovery Services vault.\",\r\n \"creationTimeUtc\": \"2021-01-22T05:42:48.4447387Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"2:102\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\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 'vi-win-vm-new'.\",\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-01-22T06:17:47.841218Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationPolicies/test-policy\",\r\n \"policyFriendlyName\": \"test-policy\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"infrastructureVmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vCenterInfrastructureId\": \"1\",\r\n \"protectionStage\": \"DifferentialSync\",\r\n \"vmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"resyncProgressPercentage\": 0,\r\n \"rpoInSeconds\": 476,\r\n \"compressedDataRateInMB\": 0.0,\r\n \"uncompressedDataRateInMB\": 0.0,\r\n \"ipAddress\": \"10.150.168.181\",\r\n \"agentVersion\": \"9.32.0.0\",\r\n \"agentExpiryDate\": \"2021-01-07T00:00:00Z\",\r\n \"isAgentUpdateRequired\": \"NotRequired\",\r\n \"isRebootAfterUpdateRequired\": \"NotRequired\",\r\n \"lastHeartbeat\": \"2021-01-22T06:08:35Z\",\r\n \"processServerId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"processServerName\": \"WIN-B6L6OJO1E6Q\",\r\n \"multiVmGroupId\": \"70374ed8-5fe0-4271-a73b-85f9dc9005cd\",\r\n \"multiVmGroupName\": \"70374ed8-5fe0-4271-a73b-85f9dc9005cd\",\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"protectedDisks\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"diskName\": \"Disk0\",\r\n \"protectionStage\": \"DifferentialSync\",\r\n \"healthErrorCode\": null,\r\n \"rpoInSeconds\": 476,\r\n \"resyncRequired\": \"NotRequired\",\r\n \"resyncProgressPercentage\": 0,\r\n \"resyncDurationInSeconds\": 869,\r\n \"diskCapacityInBytes\": 42949672960,\r\n \"fileSystemCapacityInBytes\": 42949672960,\r\n \"sourceDataInMegaBytes\": 0.11,\r\n \"psDataInMegaBytes\": 0.32,\r\n \"targetDataInMegaBytes\": 0.0,\r\n \"diskResized\": \"NotResized\",\r\n \"lastRpoCalculatedTime\": \"2021-01-22T06:06:58Z\",\r\n \"resyncProcessedBytes\": 0,\r\n \"resyncTotalTransferredBytes\": 0,\r\n \"resyncLast15MinutesTransferredBytes\": 0,\r\n \"resyncLastDataTransferTimeUTC\": null,\r\n \"resyncStartTime\": null,\r\n \"progressHealth\": null,\r\n \"progressStatus\": null\r\n }\r\n ],\r\n \"diskResized\": \"NotResized\",\r\n \"masterTargetId\": \"D10734D9-FD18-484A-9357660D51665E8F\",\r\n \"sourceVmCpuCount\": 1,\r\n \"sourceVmRamSizeInMB\": 4095,\r\n \"osType\": \"Windows\",\r\n \"vhdName\": \"\\\\\\\\.\\\\PHYSICALDRIVE0\",\r\n \"osDiskId\": \"{3255470998}\",\r\n \"azureVMDiskDetails\": [],\r\n \"recoveryAzureVMName\": \"vi-win-vm\",\r\n \"recoveryAzureVMSize\": \"Standard_A2_v2\",\r\n \"recoveryAzureStorageAccount\": null,\r\n \"recoveryAzureLogStorageAccountId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Storage/storageAccounts/logstoracc123\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"00:50:56:86:0B:DB\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": null,\r\n \"vMSubnetName\": \"Subnet-1\",\r\n \"vMNetworkName\": \"Intel(R) PRO/1000 MT Network Connection\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": null,\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 \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"selectedSourceNicId\": \"00:50:56:86:0B:DB\",\r\n \"discoveryType\": \"vCenter\",\r\n \"enableRdpOnTargetOption\": \"Never\",\r\n \"datastores\": [\r\n \"datastore78-ext2\"\r\n ],\r\n \"targetVmId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/virtualMachines/\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"targetAvailabilityZone\": \"\",\r\n \"targetProximityPlacementGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/proximityPlacementGroups/ppgnew\",\r\n \"useManagedDisks\": \"true\",\r\n \"licenseType\": \"WindowsServer\",\r\n \"validationErrors\": [],\r\n \"lastRpoCalculatedTime\": \"2021-01-22T06:06:58Z\",\r\n \"lastUpdateReceivedTime\": \"2021-01-22T06:09:39.6432666Z\",\r\n \"replicaId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef_replica_cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"osVersion\": \"Microsoft Windows Server 2012 R2 Standard\",\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"{3255470998}\",\r\n \"seedManagedDiskId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/disks/asrseeddisk-vi_win_v-PHYSICAL-91144b43-2577-45d4-9764-bbae61a2271b\",\r\n \"replicaDiskType\": \"Standard_LRS\",\r\n \"diskEncryptionSetId\": null\r\n }\r\n ],\r\n \"lastRecoveryPointReceived\": \"2021-01-22T06:09:01.1793481Z\",\r\n \"firmwareType\": \"BIOS\",\r\n \"azureVmGeneration\": \"V1\",\r\n \"isAdditionalStatsAvailable\": false,\r\n \"totalDataTransferred\": 0,\r\n \"totalProgressHealth\": null,\r\n \"targetVmTags\": {},\r\n \"seedManagedDiskTags\": null,\r\n \"targetManagedDiskTags\": null,\r\n \"targetNicTags\": {}\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/d49858f157601230a6ac5862fbbc6e63bf38d23ecd96cf953767945d457fe9d5/replicationProtectionContainers/d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"eventCorrelationId\": \"603b4e0f-4285-4c2c-bb8f-d8d5554bcc23\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25GYWJyaWNzL2Y3YjhjM2NlYmZmNWVjOWEyMDFhNWQzZDA2OTg1ODRlNzg4MWIwNzQ1M2M4YTZlNjYwNGE5ODJjMWY5ZWViNTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9jbG91ZF81MGU1OWZjOC01ODc2LTRkZWMtYjIwMy0xOWQ1YmQ2OTc5N2YvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy92aS13aW4tdm0/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryAzureVMName\": \"vi-win-vm\",\r\n \"recoveryAzureVMSize\": \"Standard_A2_v2\",\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"selectedTfoAzureNetworkId\": \"\",\r\n \"selectedSourceNicId\": \"00:50:56:86:0B:DB\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"00:50:56:86:0B:DB\",\r\n \"recoveryVMSubnetName\": \"default\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": []\r\n }\r\n ],\r\n \"licenseType\": \"WindowsServer\",\r\n \"recoveryAvailabilitySetId\": \"\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"InMageAzureV2\",\r\n \"recoveryAzureV2ResourceGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg\",\r\n \"useManagedDisks\": \"true\",\r\n \"targetProximityPlacementGroupId\": \"/subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.Compute/proximityPlacementGroups/ppgnew\",\r\n \"targetAvailabilityZone\": \"\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e06cbf8e-94cc-4858-a853-a6eb2a3d3589" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292758664)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897558664)\\/\",\"ClientRequestId\":\"7b9dc471-1644-424f-8396-082eb4514043-2021-01-22 06:19:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iD4tCC0RRA2Zo//clcG6u340AoP2bi7798uSIr/CbrM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1248" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationFabrics/f7b8c3cebff5ec9a201a5d3d0698584e7881b07453c8a6e6604a982c1f9eeb58/replicationProtectionContainers/cloud_50e59fc8-5876-4dec-b203-19d5bd69797f/replicationProtectedItems/vi-win-vm/operationresults/f8c8ec30-0c1d-490a-a8b5-6c75d76a3a83?api-version=2018-07-10" + ], + "Retry-After": [ + "30" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/f8c8ec30-0c1d-490a-a8b5-6c75d76a3a83", + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/f8c8ec30-0c1d-490a-a8b5-6c75d76a3a83" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationOperationStatus/f8c8ec30-0c1d-490a-a8b5-6c75d76a3a83?api-version=2018-07-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e06cbf8e-94cc-4858-a853-a6eb2a3d3589" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "d4f1df72-4006-4c44-af77-576c6af37f77" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061920Z:d4f1df72-4006-4c44-af77-576c6af37f77" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/f8c8ec30-0c1d-490a-a8b5-6c75d76a3a83?api-version=2018-07-10", + "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvYjM2NGVkOGQtNDI3OS00YmY4LThmZDEtNTZmOGZhMGFlMDVjL3Jlc291cmNlR3JvdXBzL3ZpamFtaS1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL3ZpZHlhdmF1bHQvcmVwbGljYXRpb25Kb2JzL2Y4YzhlYzMwLTBjMWQtNDkwYS1hOGI1LTZjNzVkNzZhM2E4Mz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e06cbf8e-94cc-4858-a853-a6eb2a3d3589" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1611292760781)\\/\",\"NotAfterTimestamp\":\"\\/Date(1611897560781)\\/\",\"ClientRequestId\":\"468993f9-a04d-44b0-9b14-53c28788ff4f-2021-01-22 06:19:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"THreJvzekchA4DB6mQwuyQG578UF0jZTjsxDJfhD7kE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "x-ms-request-id": [ + "/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/f8c8ec30-0c1d-490a-a8b5-6c75d76a3a83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e06cbf8e-94cc-4858-a853-a6eb2a3d3589" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-correlation-request-id": [ + "74b9d6d0-69af-4322-9133-9428d5b1af18" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210122T061921Z:74b9d6d0-69af-4322-9133-9428d5b1af18" + ], + "Date": [ + "Fri, 22 Jan 2021 06:19:20 GMT" + ], + "Content-Length": [ + "1869" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c/resourceGroups/vijami-rg/providers/Microsoft.RecoveryServices/vaults/vidyavault/replicationJobs/f8c8ec30-0c1d-490a-a8b5-6c75d76a3a83\",\r\n \"name\": \"f8c8ec30-0c1d-490a-a8b5-6c75d76a3a83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e06cbf8e-94cc-4858-a853-a6eb2a3d3589 ActivityId: d4f1df72-4006-4c44-af77-576c6af37f77\",\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\": \"fb07303e-79be-495a-8bf6-78d2a18cd358\",\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-01-22T06:19:20.1316921Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"targetObjectName\": \"vi-win-vm-new\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"f9e8c75c-5bda-11eb-a6c3-0050568657ef\",\r\n \"primaryVmName\": \"vi-win-vm-new\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"vi-win-vm-new\",\r\n \"protectionProfileId\": \"efede9dc-b50e-5723-93e9-4bd8604069c5\",\r\n \"primaryCloudId\": \"cloud_50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryCloudName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryCloudId\": \"d38048d4-b460-4791-8ece-108395ee8478\",\r\n \"recoveryCloudName\": \"Microsoft Azure\",\r\n \"primaryVmmId\": \"50e59fc8-5876-4dec-b203-19d5bd69797f\",\r\n \"primaryVmmName\": \"WIN-B6L6OJO1E6Q\",\r\n \"recoveryVmmId\": \"21a9403c-6ec1-44f2-b744-b4e50b792387\",\r\n \"recoveryVmmName\": \"Microsoft Azure\",\r\n \"primaryFabricProviderId\": \"VMware\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b364ed8d-4279-4bf8-8fd1-56f8fa0ae05c" + } +} \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery/Models/PSFabricDetails.cs b/src/RecoveryServices/RecoveryServices.SiteRecovery/Models/PSFabricDetails.cs index db11071d7318..3dd5fa78a2b4 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery/Models/PSFabricDetails.cs +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery/Models/PSFabricDetails.cs @@ -733,6 +733,8 @@ public class ASRHyperVReplicaAzureSpecificRPIDetails : ASRProviderSpecificRPIDet public ASRHyperVReplicaAzureSpecificRPIDetails(HyperVReplicaAzureReplicationDetails details) { this.RecoveryAvailabilitySetId = details.RecoveryAvailabilitySetId; + this.RecoveryAvailabilityZone = details.TargetAvailabilityZone; + this.RecoveryProximityPlacementGroupId = details.TargetProximityPlacementGroupId; this.EnableRDPOnTargetOption = details.EnableRdpOnTargetOption; this.SourceVmCPUCount = details.SourceVmCpuCount; this.SourceVmRAMSizeInMB = details.SourceVmRamSizeInMB; @@ -852,6 +854,16 @@ public ASRHyperVReplicaAzureSpecificRPIDetails(HyperVReplicaAzureReplicationDeta /// public string LicenseType { get; set; } + /// + /// Gets or sets the resource ID of the availability zone to failover this virtual machine to. + /// + public string RecoveryAvailabilityZone { get; set; } + + /// + /// Gets or sets the proximity placement group Id for replication protected item after failover. + /// + public string RecoveryProximityPlacementGroupId { get; set; } + } /// @@ -905,6 +917,8 @@ public ASRInMageAzureV2SpecificRPIDetails(InMageAzureV2ReplicationDetails detail this.VmId = details.VmId; this.VmProtectionState = details.VmProtectionState; this.VmProtectionStateDescription = details.VmProtectionStateDescription; + this.RecoveryAvailabilityZone = details.TargetAvailabilityZone; + this.RecoveryProximityPlacementGroupId = details.TargetProximityPlacementGroupId; if (details.ProtectedDisks != null) { this.ProtectedDiskDetails = new List(); @@ -1159,6 +1173,16 @@ public ASRInMageAzureV2SpecificRPIDetails(InMageAzureV2ReplicationDetails detail // Summary: // Gets or sets the protection state description for the vm. public string VmProtectionStateDescription { get; set; } + + /// + /// Gets or sets the resource ID of the availability zone to failover this virtual machine to. + /// + public string RecoveryAvailabilityZone { get; set; } + + /// + /// Gets or sets the proximity placement group Id for replication protected item after failover. + /// + public string RecoveryProximityPlacementGroupId { get; set; } } /// diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery/RecoveryServices.SiteRecovery.csproj b/src/RecoveryServices/RecoveryServices.SiteRecovery/RecoveryServices.SiteRecovery.csproj index 3c167bd49f9e..7e9d3f940c47 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery/RecoveryServices.SiteRecovery.csproj +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery/RecoveryServices.SiteRecovery.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/NewAzureRmRecoveryServicesAsrReplicationProtectedItem.cs b/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/NewAzureRmRecoveryServicesAsrReplicationProtectedItem.cs index 8c6b33945a8a..8b0313e38f07 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/NewAzureRmRecoveryServicesAsrReplicationProtectedItem.cs +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/NewAzureRmRecoveryServicesAsrReplicationProtectedItem.cs @@ -281,6 +281,9 @@ public class NewAzureRmRecoveryServicesAsrReplicationProtectedItem : SiteRecover /// [Parameter(ParameterSetName = ASRParameterSets.AzureToAzure, HelpMessage = "Specify the availability zone to used by the failover Vm in target recovery region.")] [Parameter(ParameterSetName = ASRParameterSets.AzureToAzureWithoutDiskDetails, HelpMessage = "Specify the availability zone to used by the failover Vm in target recovery region.")] + [Parameter(ParameterSetName = VMwareToAzureWithDiskType, HelpMessage = "Specify the availability zone to used by the failover Vm in target recovery region.")] + [Parameter(ParameterSetName = VMwareToAzureParameterSet, HelpMessage = "Specify the availability zone to used by the failover Vm in target recovery region.")] + [Parameter(ParameterSetName = ASRParameterSets.HyperVSiteToAzure, HelpMessage = "Specify the availability zone to used by the failover Vm in target recovery region.")] [ValidateNotNullOrEmpty] public string RecoveryAvailabilityZone { get; set; } @@ -289,6 +292,9 @@ public class NewAzureRmRecoveryServicesAsrReplicationProtectedItem : SiteRecover /// [Parameter(ParameterSetName = ASRParameterSets.AzureToAzure, HelpMessage = "Specify the proximity placement group Id to used by the failover Vm in target recovery region.")] [Parameter(ParameterSetName = ASRParameterSets.AzureToAzureWithoutDiskDetails, HelpMessage = "Specify the proximity placement group Id to used by the failover Vm in target recovery region.")] + [Parameter(ParameterSetName = VMwareToAzureWithDiskType, HelpMessage = "Specify the proximity placement group Id to used by the failover Vm in target recovery region.")] + [Parameter(ParameterSetName = VMwareToAzureParameterSet, HelpMessage = "Specify the proximity placement group Id to used by the failover Vm in target recovery region.")] + [Parameter(ParameterSetName = ASRParameterSets.HyperVSiteToAzure, HelpMessage = "Specify the proximity placement group Id to used by the failover Vm in target recovery region.")] [ValidateNotNullOrEmpty] public string RecoveryProximityPlacementGroupId { get; set; } @@ -489,7 +495,9 @@ private void VMwareToAzureReplication(EnableProtectionInput input) ? this.ProtectableItem.FriendlyName : this.RecoveryVmName, EnableRdpOnTargetOption = Constants.NeverEnableRDPOnTargetOption, - DiskEncryptionSetId = this.DiskEncryptionSetId + DiskEncryptionSetId = this.DiskEncryptionSetId, + TargetAvailabilityZone = this.RecoveryAvailabilityZone, + TargetProximityPlacementGroupId = this.RecoveryProximityPlacementGroupId }; if (this.IsParameterBound(c => c.InMageAzureV2DiskInput)) @@ -582,6 +590,8 @@ private void EnterpriseAndHyperVToAzure(EnableProtectionInput input) providerSettings.TargetAzureVmName = string.IsNullOrEmpty(this.RecoveryVmName) ? this.ProtectableItem.FriendlyName : this.RecoveryVmName; + providerSettings.TargetProximityPlacementGroupId = this.RecoveryProximityPlacementGroupId; + providerSettings.TargetAvailabilityZone = this.RecoveryAvailabilityZone; if (!string.IsNullOrEmpty(this.RecoveryAzureNetworkId)) { diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/SetAzureRmRecoveryServicesAsrReplicationProtectedItem.cs b/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/SetAzureRmRecoveryServicesAsrReplicationProtectedItem.cs index 480a8a73ed97..c939966ea1d7 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/SetAzureRmRecoveryServicesAsrReplicationProtectedItem.cs +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery/ReplicationProtectedItem/SetAzureRmRecoveryServicesAsrReplicationProtectedItem.cs @@ -130,6 +130,12 @@ public class SetAzureRmRecoveryServicesAsrReplicationProtectedItem : SiteRecover [Parameter] public string RecoveryAvailabilitySet { get; set; } + // + /// Gets or sets the resource ID of the availability zone to failover this virtual machine to. + /// + [Parameter] + public string RecoveryAvailabilityZone { get; set; } + /// /// Gets or sets the proximity placement group Id for replication protected item after failover. /// @@ -277,6 +283,7 @@ public override void ExecuteSiteRecoveryCmdlet() string.IsNullOrEmpty(this.PrimaryNic) && this.UseManagedDisk == null && this.IsParameterBound(c => c.RecoveryAvailabilitySet) && + this.IsParameterBound(c => c.RecoveryAvailabilityZone) && this.IsParameterBound(c => c.RecoveryProximityPlacementGroupId) && string.IsNullOrEmpty(this.RecoveryCloudServiceId) && string.IsNullOrEmpty(this.RecoveryResourceGroupId) && @@ -332,6 +339,7 @@ public override void ExecuteSiteRecoveryCmdlet() var useManagedDisk = this.UseManagedDisk; var availabilitySetId = this.RecoveryAvailabilitySet; var proximityPlacementGroupId = this.RecoveryProximityPlacementGroupId; + var availabilityZone = this.RecoveryAvailabilityZone; var primaryNic = this.PrimaryNic; var diskIdToDiskEncryptionMap = this.DiskIdToDiskEncryptionSetMap; var tfoNetworkId = string.Empty; @@ -369,6 +377,14 @@ public override void ExecuteSiteRecoveryCmdlet() ? this.RecoveryAvailabilitySet : providerSpecificDetails.RecoveryAvailabilitySetId; + availabilityZone = this.IsParameterBound(c => c.RecoveryAvailabilityZone) + ? this.RecoveryAvailabilityZone + : providerSpecificDetails.TargetAvailabilityZone; + + proximityPlacementGroupId = this.IsParameterBound(c => c.RecoveryProximityPlacementGroupId) + ? this.RecoveryProximityPlacementGroupId + : providerSpecificDetails.TargetProximityPlacementGroupId; + if (string.IsNullOrEmpty(this.UseManagedDisk)) { useManagedDisk = providerSpecificDetails.UseManagedDisks; @@ -414,7 +430,9 @@ public override void ExecuteSiteRecoveryCmdlet() RecoveryAzureV1ResourceGroupId = null, RecoveryAzureV2ResourceGroupId = recoveryResourceGroupId, UseManagedDisks = useManagedDisk, - DiskIdToDiskEncryptionMap = this.DiskIdToDiskEncryptionSetMap + DiskIdToDiskEncryptionMap = this.DiskIdToDiskEncryptionSetMap, + TargetAvailabilityZone = availabilityZone, + TargetProximityPlacementGroupId = proximityPlacementGroupId }; } @@ -448,6 +466,12 @@ public override void ExecuteSiteRecoveryCmdlet() availabilitySetId = this.IsParameterBound(c => c.RecoveryAvailabilitySet) ? this.RecoveryAvailabilitySet : providerSpecificDetails.RecoveryAvailabilitySetId; + availabilityZone = this.IsParameterBound(c => c.RecoveryAvailabilityZone) + ? this.RecoveryAvailabilityZone : providerSpecificDetails.TargetAvailabilityZone; + + proximityPlacementGroupId = this.IsParameterBound(c => c.RecoveryProximityPlacementGroupId) + ? this.RecoveryProximityPlacementGroupId : providerSpecificDetails.TargetProximityPlacementGroupId; + if (string.IsNullOrEmpty(this.UseManagedDisk)) { useManagedDisk = providerSpecificDetails.UseManagedDisks; @@ -484,7 +508,9 @@ public override void ExecuteSiteRecoveryCmdlet() { RecoveryAzureV1ResourceGroupId = null, RecoveryAzureV2ResourceGroupId = recoveryResourceGroupId, - UseManagedDisks = useManagedDisk + UseManagedDisks = useManagedDisk, + TargetAvailabilityZone = availabilityZone, + TargetProximityPlacementGroupId = proximityPlacementGroupId }; } vMNicInputDetailsList = getNicListToUpdate(providerSpecificDetails.VmNics); diff --git a/src/RecoveryServices/RecoveryServices/ChangeLog.md b/src/RecoveryServices/RecoveryServices/ChangeLog.md index 11ef431f48c3..11df69cebac7 100644 --- a/src/RecoveryServices/RecoveryServices/ChangeLog.md +++ b/src/RecoveryServices/RecoveryServices/ChangeLog.md @@ -19,6 +19,8 @@ --> ## Upcoming Release * Added Zone Redundancy for Recovery Service Vaults. +* Azure Site Recovery support for Proximity placement group for Vmware to Azure and HyperV to Azure providers. +* Azure Site Recovery support for Availability zone for Vmware to Azure and HyperV to Azure providers. ## Version 3.3.0 * Added Cross Region Restore feature. diff --git a/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesAsrReplicationProtectedItem.md b/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesAsrReplicationProtectedItem.md index 74c158700a5d..f959f549dd6e 100644 --- a/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesAsrReplicationProtectedItem.md +++ b/src/RecoveryServices/RecoveryServices/help/Get-AzRecoveryServicesAsrReplicationProtectedItem.md @@ -52,7 +52,8 @@ Lists all replication protected items in the specified ASR protection container. Gets the properties of an Azure Site Recovery Replication Protected Items. (autogenerated) -```powershell +```powershell + Get-AzRecoveryServicesAsrReplicationProtectedItem -FriendlyName XXXXXXXXXX -ProtectionContainer $PrimaryContainer ``` diff --git a/src/RecoveryServices/RecoveryServices/help/New-AzRecoveryServicesAsrReplicationProtectedItem.md b/src/RecoveryServices/RecoveryServices/help/New-AzRecoveryServicesAsrReplicationProtectedItem.md index c86cd4fd786c..11411ba17c58 100644 --- a/src/RecoveryServices/RecoveryServices/help/New-AzRecoveryServicesAsrReplicationProtectedItem.md +++ b/src/RecoveryServices/RecoveryServices/help/New-AzRecoveryServicesAsrReplicationProtectedItem.md @@ -25,8 +25,10 @@ New-AzRecoveryServicesAsrReplicationProtectedItem [-VMwareToAzure] -ProtectableI -Name [-RecoveryVmName ] -ProtectionContainerMapping -Account [-LogStorageAccountId ] -ProcessServer [-RecoveryAzureNetworkId ] [-RecoveryAzureSubnetName ] -RecoveryResourceGroupId - [-ReplicationGroupName ] [-WaitForCompletion] -DiskType [-DiskEncryptionSetId ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-ReplicationGroupName ] [-RecoveryAvailabilityZone ] + [-RecoveryProximityPlacementGroupId ] [-WaitForCompletion] -DiskType + [-DiskEncryptionSetId ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### VMwareToAzure @@ -36,7 +38,8 @@ New-AzRecoveryServicesAsrReplicationProtectedItem [-VMwareToAzure] -ProtectableI -Account [-LogStorageAccountId ] [-InMageAzureV2DiskInput ] -ProcessServer [-RecoveryAzureNetworkId ] [-RecoveryAzureSubnetName ] -RecoveryResourceGroupId - [-ReplicationGroupName ] [-WaitForCompletion] [-DiskEncryptionSetId ] + [-ReplicationGroupName ] [-RecoveryAvailabilityZone ] + [-RecoveryProximityPlacementGroupId ] [-WaitForCompletion] [-DiskEncryptionSetId ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -54,8 +57,9 @@ New-AzRecoveryServicesAsrReplicationProtectedItem [-HyperVToAzure] -ProtectableI -Name [-RecoveryVmName ] -ProtectionContainerMapping -RecoveryAzureStorageAccountId -OSDiskName -OS [-LogStorageAccountId ] [-IncludeDiskId ] [-RecoveryAzureNetworkId ] [-RecoveryAzureSubnetName ] - -RecoveryResourceGroupId [-WaitForCompletion] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + -RecoveryResourceGroupId [-RecoveryAvailabilityZone ] + [-RecoveryProximityPlacementGroupId ] [-WaitForCompletion] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ### AzureToAzure @@ -524,7 +528,7 @@ Specifies the recovery VM availability zone after failover. ```yaml Type: System.String -Parameter Sets: AzureToAzure, AzureToAzureWithoutDiskDetails +Parameter Sets: VMwareToAzureWithDiskType, VMwareToAzure, HyperVSiteToAzure, AzureToAzure, AzureToAzureWithoutDiskDetails Aliases: Required: False @@ -626,7 +630,7 @@ Specify the proximity placement group Id to used by the failover Vm in target re ```yaml Type: System.String -Parameter Sets: AzureToAzure, AzureToAzureWithoutDiskDetails +Parameter Sets: VMwareToAzureWithDiskType, VMwareToAzure, HyperVSiteToAzure, AzureToAzure, AzureToAzureWithoutDiskDetails Aliases: Required: False diff --git a/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesAsrReplicationProtectedItem.md b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesAsrReplicationProtectedItem.md index a9908f1ce57a..542ba48f76e1 100644 --- a/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesAsrReplicationProtectedItem.md +++ b/src/RecoveryServices/RecoveryServices/help/Set-AzRecoveryServicesAsrReplicationProtectedItem.md @@ -17,8 +17,9 @@ Set-AzRecoveryServicesAsrReplicationProtectedItem -InputObject ] [-UpdateNic ] [-RecoveryNetworkId ] [-PrimaryNic ] [-RecoveryCloudServiceId ] [-RecoveryNicSubnetName ] [-RecoveryNicStaticIPAddress ] [-NicSelectionType ] [-RecoveryResourceGroupId ] [-LicenseType ] - [-RecoveryAvailabilitySet ] [-RecoveryProximityPlacementGroupId ] - [-EnableAcceleratedNetworkingOnRecovery] [-RecoveryBootDiagStorageAccountId ] + [-RecoveryAvailabilitySet ] [-RecoveryAvailabilityZone ] + [-RecoveryProximityPlacementGroupId ] [-EnableAcceleratedNetworkingOnRecovery] + [-RecoveryBootDiagStorageAccountId ] [-AzureToAzureUpdateReplicationConfiguration ] [-DiskEncryptionVaultId ] [-DiskEncryptionSecretUrl ] [-KeyEncryptionKeyUrl ] [-KeyEncryptionVaultId ] [-UseManagedDisk ] @@ -87,7 +88,6 @@ PS C:\> $currentJob = Set-AzureRmRecoveryServicesAsrReplicationProtectedItem -In Start the update operation for the specified replication protected item to use the supplied proximity placement group for failover VM. - ## PARAMETERS ### -ASRVMNicConfiguration @@ -320,6 +320,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RecoveryAvailabilityZone +Specifies availability zone for replication protected item after failover. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -RecoveryBootDiagStorageAccountId Specifies the storage account for boot diagnostics for recovery azure VM.