diff --git a/ChangeLog.txt b/ChangeLog.txt index 8a3c23ddb32e..7fd38bf34683 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -35,6 +35,12 @@ * Get-AzureSqlDatabaseRestorePoints * Changed cmdlets: * New-AzureSqlDatabase - Can now create Azure Sql Data Warehouse databases +* Azure Recovery Services + * Fixed Storage and Network mapping issues + * Added encryption support for failover changes + * Added Delete vault support + * Provisioned to update VM properties + * Few bug fixes 2015.06.05 version 0.9.3 * Fixed bug in Websites cmdlets related to slots #454 diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index c979b6822a16..8cb2fd8229ae 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -2973,6 +2973,9 @@ + + + @@ -4892,6 +4895,7 @@ + diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj index 2af8beb9d7e4..d7be7672d64d 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj @@ -81,9 +81,8 @@ ..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll - - False - ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.0.5.1-preview\lib\net40\Microsoft.WindowsAzure.Management.SiteRecovery.dll + + ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.0.6.0-preview\lib\net40\Microsoft.WindowsAzure.Management.SiteRecovery.dll False @@ -92,6 +91,9 @@ ..\..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll + + ..\Commands.RecoveryServices\lib\SiteRecovery.Tests.dll + diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.cs index 795fbe6f47f9..4cbec3c12270 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.cs @@ -155,5 +155,11 @@ public void CommitRPTest() { this.RunPowerShellTest("Test-CommitRP -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\""); } + + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void RecoveryServicesSanE2ETest() + { + this.RunPowerShellTest("Test-SanE2E -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\""); + } } } diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1 b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1 index 7dcb3c0c6f52..42ae642add7b 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1 +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.ps1 @@ -177,7 +177,7 @@ function Test-RecoveryServicesEnumerationTests Assert-NotNull($protectionContainer.ID) # Enumerate Protection Entities under each configured Protection Containers - if ($protectionContainer.ConfigurationStatus -eq "Configured") + if ($protectionContainer.Role -eq "Primary") { $protectionEntities = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $protectionContainer Assert-NotNull($protectionEntities) @@ -247,7 +247,7 @@ function Test-StorageMapping # Enumerate Servers $servers = Get-AzureSiteRecoveryServer - Assert-True { $servers.Count -gt 0 } + Assert-True { $servers.Count -gt 1 } Assert-NotNull($servers) foreach($server in $servers) { @@ -256,25 +256,34 @@ function Test-StorageMapping } # Enumerate Storages - $storages = Get-AzureSiteRecoveryStorage -Server $servers[0] - Assert-NotNull($storages) - Assert-True { $storages.Count -gt 0 } - foreach($storage in $storages) + $storagesOnPrimary = Get-AzureSiteRecoveryStorage -Server $servers[0] + Assert-NotNull($storagesOnPrimary) + Assert-True { $storagesOnPrimary.Count -gt 0 } + foreach($storage in $storagesOnPrimary) + { + Assert-NotNull($storage.Name) + Assert-NotNull($storage.ID) + } + + $storagesOnRecovery = Get-AzureSiteRecoveryStorage -Server $servers[1] + Assert-NotNull($storagesOnRecovery) + Assert-True { $storagesOnRecovery.Count -gt 0 } + foreach($storage in $storagesOnRecovery) { Assert-NotNull($storage.Name) Assert-NotNull($storage.ID) } # Enumerate StorageMappings - $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0] + $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1] Assert-True { $storageMappings.Count -eq 0 } # Create StorageMapping - $job = New-AzureSiteRecoveryStorageMapping -PrimaryStorage $storages[0] -RecoveryStorage $storages[1] + $job = New-AzureSiteRecoveryStorageMapping -PrimaryStorage $storagesOnPrimary[0] -RecoveryStorage $storagesOnRecovery[0] WaitForJobCompletion -JobId $job.ID # Enumerate StorageMappings - $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0] + $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1] Assert-NotNull($storageMappings) Assert-True { $storageMappings.Count -eq 1 } Assert-NotNull($storageMappings[0].PrimaryServerId) @@ -296,7 +305,7 @@ function Test-StorageUnMapping # Enumerate Servers $servers = Get-AzureSiteRecoveryServer - Assert-True { $servers.Count -gt 0 } + Assert-True { $servers.Count -gt 1 } Assert-NotNull($servers) foreach($server in $servers) { @@ -305,7 +314,7 @@ function Test-StorageUnMapping } # Enumerate StorageMappings - $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0] + $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1] Assert-NotNull($storageMappings) Assert-True { $storageMappings.Count -eq 1 } Assert-NotNull($storageMappings[0].PrimaryServerId) @@ -318,7 +327,7 @@ function Test-StorageUnMapping WaitForJobCompletion -JobId $job.ID # Enumerate StorageMappings - $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0] + $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1] Assert-True { $storageMappings.Count -eq 0 } } @@ -335,7 +344,7 @@ function Test-NetworkMapping # Enumerate Servers $servers = Get-AzureSiteRecoveryServer - Assert-True { $servers.Count -gt 0 } + Assert-True { $servers.Count -gt 1 } Assert-NotNull($servers) foreach($server in $servers) { @@ -344,25 +353,34 @@ function Test-NetworkMapping } # Enumerate Networks - $networks = Get-AzureSiteRecoveryNetwork -Server $servers[0] - Assert-NotNull($networks) - Assert-True { $networks.Count -gt 0 } - foreach($network in $networks) + $networksOnPrimary = Get-AzureSiteRecoveryNetwork -Server $servers[0] + Assert-NotNull($networksOnPrimary) + Assert-True { $networksOnPrimary.Count -gt 0 } + foreach($network in $networksOnPrimary) + { + Assert-NotNull($network.Name) + Assert-NotNull($network.ID) + } + + $networksOnRecovery = Get-AzureSiteRecoveryNetwork -Server $servers[1] + Assert-NotNull($networksOnRecovery) + Assert-True { $networksOnRecovery.Count -gt 0 } + foreach($network in $networksOnRecovery) { Assert-NotNull($network.Name) Assert-NotNull($network.ID) } # Enumerate NetworkMappings - $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0] + $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1] Assert-True { $networkMappings.Count -eq 0 } # Create NetworkMapping - $job = New-AzureSiteRecoveryNetworkMapping -PrimaryNetwork $networks[0] -RecoveryNetwork $networks[1] + $job = New-AzureSiteRecoveryNetworkMapping -PrimaryNetwork $networksOnPrimary[0] -RecoveryNetwork $networksOnRecovery[0] WaitForJobCompletion -JobId $job.ID # Enumerate NetworkMappings - $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0] + $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1] Assert-NotNull($networkMappings) Assert-True { $networkMappings.Count -eq 1 } Assert-NotNull($networkMappings[0].PrimaryServerId) @@ -450,7 +468,7 @@ function Test-NetworkUnMapping # Enumerate Servers $servers = Get-AzureSiteRecoveryServer - Assert-True { $servers.Count -gt 0 } + Assert-True { $servers.Count -gt 1 } Assert-NotNull($servers) foreach($server in $servers) { @@ -459,7 +477,7 @@ function Test-NetworkUnMapping } # Enumerate NetworkMappings - $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0] + $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1] Assert-NotNull($networkMappings) Assert-True { $networkMappings.Count -eq 1 } Assert-NotNull($networkMappings[0].PrimaryServerId) @@ -474,7 +492,7 @@ function Test-NetworkUnMapping WaitForJobCompletion -JobId $job.ID # Enumerate NetworkMappings - $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0] + $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1] Assert-True { $networkMappings.Count -eq 0 } } @@ -1142,7 +1160,7 @@ function Test-EnableProtection # Validate_EnableProtection_WaitForCanFailover if ($Validate_EnableProtection_WaitForCanFailover -eq $true) { - WaitForCanFailover $protectionEntity.ProtectionContainerId $protectionEntity.ID + WaitForCanFailover $protectionEntity.ProtectionContainerId $protectionEntity.ID 600 } return; @@ -1206,23 +1224,171 @@ function Test-DisableProtection Assert-NotNull($job) "No VM found for Disable Protection" } +<# +.SYNOPSIS +Recovery Services San E2E test +#> +function Test-SanE2E +{ + param([string] $vaultSettingsFilePath) + + # Import Azure Site Recovery Vault Settings + Import-AzureSiteRecoveryVaultSettingsFile $vaultSettingsFilePath + + $servers = Get-AzureSiteRecoveryServer + $primaryVmm = $servers[0] + $recoveryVmm = $servers[1] + $storagePri = Get-AzureSiteRecoveryStorage -Server $primaryVmm + $storageRec = Get-AzureSiteRecoveryStorage -Server $recoveryVmm + + # Find primary array and pool. + foreach($storage in $storagePri) + { + # Find primary array + if ($storage.Name.Contains("HRMPROSVM01")) + { + $primaryArray = $storage + + foreach($pool in $primaryArray.StoragePools) + { + # Find primary pool + if ($pool.Name.Contains("SanOneSDKPrimaryPool")) + { + $primaryStoragePool = $pool + break + } + } + } + } + + # Find recovery array and pool. + foreach($storage in $storageRec) + { + # Find recovery array + if ($storage.Name.Contains("HRMDRSVM01")) + { + $recoveryArray = $storage + + foreach($pool in $recoveryArray.StoragePools) + { + # Find recovery pool + if ($pool.Name.Contains("SanOneSDKRecoveryPool")) + { + $recoveryStoragePool = $pool + break + } + } + } + } + + # Pair pools + $job = New-AzureSiteRecoveryStoragePoolMapping -PrimaryStorage $primaryArray -PrimaryStoragePoolId $primaryStoragePool.Id -RecoveryStorage $recoveryArray -RecoveryStoragePoolId $recoveryStoragePool.Id + Assert-NotNull($job); + + $protectionContainers = Get-AzureSiteRecoveryProtectionContainer + Assert-True { $protectionContainers.Count -gt 0 } + Assert-NotNull($protectionContainers) + foreach($protectionContainer in $protectionContainers) + { + Assert-NotNull($protectionContainer.Name) + Assert-NotNull($protectionContainer.ID) + + # Find primary cloud + if ($protectionContainer.Name.Contains("SanPrimaryCloud")) + { + $primaryContainer = $protectionContainer + } + + # Find recovery cloud + if ($protectionContainer.Name.Contains("SanRecoveryCloud")) + { + $recoveryContainer = $protectionContainer + } + } + + # Create protection profile + $pp = New-AzureSiteRecoveryProtectionProfileObject -ReplicationProvider San -PrimaryContainerId $primaryContainer.ID -RecoveryContainerId $recoveryContainer.ID -PrimaryArrayId $primaryArray.ID -RecoveryArrayId $recoveryArray.ID + + # Start cloud pairing + $job = Start-AzureSiteRecoveryProtectionProfileAssociationJob -ProtectionProfile $pp -PrimaryProtectionContainer $primaryContainer -RecoveryProtectionContainer $recoveryContainer + Assert-NotNull($job); + WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 600 + + # Get protection Entity (RG) + $pe = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $primaryContainer + + # Enable RG + $job = Set-AzureSiteRecoveryProtectionEntity -ProtectionEntity $pe -Protection Enable -RPO 0 -Replicationtype Async -RecoveryArrayId $recoveryArray.ID + Assert-NotNull($job); + WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 900 + + # Get protection Entity (RG) again after enable + $pe = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $primaryContainer + + # Test failover RG + $job = Start-AzureSiteRecoveryTestFailoverJob -ProtectionEntity $pe -WaitForCompletion -Direction PrimaryToRecovery + Assert-NotNull($job); + + # Resume Job on manual action + $job = Resume-AzureSiteRecoveryJob -Id $job.ID + WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 900 + + # Planned failover RG + $job = Start-AzureSiteRecoveryPlannedFailoverJob -ProtectionEntity $pe -Direction PrimaryToRecovery + Assert-NotNull($job); + WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 900 + + # Reverse RG + $job = Update-AzureSiteRecoveryProtection -ProtectionEntity $pe -Direction RecoveryToPrimary + Assert-NotNull($job); + WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 600 + + # UnPlanned failover RG + $job = Start-AzureSiteRecoveryUnPlannedFailoverJob -ProtectionEntity $pe -Direction RecoveryToPrimary + Assert-NotNull($job); + WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 900 + + # Reverse RG + $job = Update-AzureSiteRecoveryProtection -ProtectionEntity $pe -Direction PrimaryToRecovery + Assert-NotNull($job); + WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 600 + + # Disable RG + $job = Set-AzureSiteRecoveryProtectionEntity -ProtectionEntity $pe -Protection Disable -DeleteReplicaLuns -RecoveryContainerId $recoveryContainer.ID + Assert-NotNull($job); + WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 900 + + # Start cloud unpairing + $job = Start-AzureSiteRecoveryProtectionProfileDissociationJob -ProtectionProfile $pp -PrimaryProtectionContainer $primaryContainer -RecoveryProtectionContainer $recoveryContainer + Assert-NotNull($job); + WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 600 + + # UnPair pools + $job = Remove-AzureSiteRecoveryStoragePoolMapping -PrimaryStorage $primaryArray -PrimaryStoragePoolId $primaryStoragePool.Id -RecoveryStorage $recoveryArray -RecoveryStoragePoolId $recoveryStoragePool.Id + Assert-NotNull($job); +} + <# .SYNOPSIS Recovery Services Enable Protection Tests +Wait for CanFailover state +Usage: + WaitForCanFailover pcId peId + WaitForCanFailover pcId peId secondsToWait #> function WaitForCanFailover { - param([string] $pcId, [string] $peId) - $count = 20 + param([string] $pcId, [string] $peId, [Int] $NumOfSecondsToWait = 120) + + $timeElapse = 0; + $interval = 5; do { - Start-Sleep 5 + Start-Sleep $interval + $timeElapse = $timeElapse + $interval $pes = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainerId $pcId; - $count = $count -1; - - Assert-True { $count -gt 0 } "Job did not reached desired state within 5*$count seconds." - + Assert-True { $timeElapse -lt $NumOfSecondsToWait } "Job did not reached desired state within $NumOfSecondsToWait seconds." } while(-not ($pes[0].CanFailover -eq $true)) } @@ -1249,3 +1415,18 @@ function WaitForJobCompletion Assert-True { $endStateDescription -ccontains $job.State } "Job did not reached desired state within $NumOfSecondsToWait seconds." } + +<# +.SYNOPSIS +Wait for job completion and validate the job +Usage: + WaitAndValidatetheJob -JobId $job.ID + WaitAndValidatetheJob -JobId $job.ID -NumOfSecondsToWait 10 +#> +function WaitAndValidatetheJob +{ + param([string] $JobId, [Int] $NumOfSecondsToWait = 120) + WaitForJobCompletion -JobId $JobId -NumOfSecondsToWait $NumOfSecondsToWait + $job = Get-AzureSiteRecoveryJob -Id $job.ID + Assert-True { $job.State -eq "Succeeded" } +} diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/vaultSettings.vaultcredentials b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/vaultSettings.vaultcredentials index 8cf54d72be01..80ca1db130c2 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/vaultSettings.vaultcredentials +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/vaultSettings.vaultcredentials @@ -1,17 +1 @@ - - - a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba - HyperVRecoveryManagerVault - Hosters-FC-BVT-Vault - MIIKogIBAzCCCmIGCSqGSIb3DQEHAaCCClMEggpPMIIKSzCCBgwGCSqGSIb3DQEHAaCCBf0EggX5MIIF9TCCBfEGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAjlStiPHQg9+QICB9AEggTYLwka9iU+N3DBRbOyHcxT4lZmynM2/H2xbBIMjOAJ51N5MdYd0utYYhRVn4zpY3UOMDyDvE0n35ed7LXHrjurMMGPc3bf7ToRHzd3HA//n+N4WmTbCsrFbbxljIdnlULEG/rfjMAPfJkIJOnDIj1kRgGSBf7LO0JM+gJri/cttZt026ld1eUeCxZOUgw+CGFl3skwhaqfPT1lFQpzOLOjY66C2ppLo9xbm+Z9j/3B4d54/PTXIFgFGZuYwHkouqTS19XuhmfuRXJPwPfEN/4w4tmmlamQG5B2n+Ug6xa6j9XFhGVj+w2kaBlxuQPlK8M1VJGNn9ZXXQeCVf4IoxqIaXZZ5TAwiEEeG3NGUhZauL6tmjjAbi6dAtYjzNBy8eqvvb/230M5C84LmwnGjWqCkmaDmv2yAb94mTbnzQIP6I2xon3UGPXpOdxY3CIo/kMFE+vOU560EBOPCLTYquRXs/JF+xKd7IUIauFCAamnJVTW8FCepQtyZw6GEBX345GIpnyJrCQ7zHW4rhiWtIrKgiJGT2JcveFbVoWAu1Gx6WTdRvpoTG4wsbhRxj4Ds1Tsvo4W9g7tBNGFptnPPyxRycH0BgCLxyne8Zfszxlw1w0BZrcOU2fLH+bWhxSd0ZyUd/xVgQzk08mJllV3RiWAdpB7+Y9ZYxgcnNgRVctr08ZMYhbF4eSzPK59EwoCeDlwlTQeNyD2Szk+6iuJ9Wft9D9zX3/YFZZxyo+SnW4cu9VqGY5ZjxnqW3RdxafBcL7mzm/fi7Kdld0bLdosb/WsJi9VtkHOrxSLnux1fG6ITG9EQIKLH98Fa2/DbB3QSycV3xWVt64ikTfKOiC0DfOvQplKHXdr8mDFvzPw4NW1ElJ/k5Twg/lF1yacfXxyw2YEOoSCwCBOWYtsh1+j5A2RWYrNs3Ov/zZw0IEoZDvhW5In6pa2Os9l/7hRNWuVEkfmnmn6LK6NDBdqvWiGEUUHxs23a3od3mOxI1VZVf7xahIHroQqZmIKDAZDaM6lBgTc6UaDl2lLQF21odXo5VN7p9maLYSgNa1mgDGfq6G+6PRIRB1cXJ5V+tn8823PbG9pMaqfY7rAgzy/rs2ombe15DyAamZ8qucdINJpB1Txi5Q7QbUU+TZeYKPUNbuxZKdWFkWIVO+gisApBi12UfDjvwcozqMtrq/d08nrXZ+XHIh+AWOvmw34dFOCNmqpo/G+RX4OEtVCwl7sIM4WfgY95Z/5Bwgv39MNRSPw3hx0lBm67dB8+NViflLg50LdADmmgcffwiK8/8INpyT1Cm3/pFt3HzsqE/hhvf+T8+b2wloTrXdTT2pr6zkmUni3dL7+e95FLcwYpyfSepdzeGPGe4f88M1cTc2GI5Magr4Su5NjkUzURW8xrdLxZR+7LNhDSYFp0pUktTS//61DewGW1u8jE6viGtwvhFSo4cGS5Bk849CLqox7hfDMGEihf7z20UPGxGC1SKDq+HlKKM3yWrkcVbfOQ4YswHYnoBONGAuRFSONRgNXnU0cj5w7M+44ZR877Ky1hpvqfh8+4UTb6q6qgVfCYYBXZcsCqkJHDYRs1zF99uQcMmEaY9ObvlcaiqPOUfl6mYxe+wkQRFKbVqmTYm7JGDVI7xYs7w81ybZ5fGUiiEZtfDGB3zATBgkqhkiG9w0BCRUxBgQEAQAAADBbBgkqhkiG9w0BCRQxTh5MAHsARQBCADAARQA2AEYAQgBBAC0AMgBDAEEAQQAtADQAMgA2AEYALQA5ADUAQgAwAC0AQQAwAEEARABCAEUARQBGAEIANQBDAEMAfTBrBgkrBgEEAYI3EQExXh5cAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcgAgAHYAMQAuADAwggQ3BgkqhkiG9w0BBwagggQoMIIEJAIBADCCBB0GCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECObDECIH2IrYAgIH0ICCA/C7ZOqutryXxufFIUfrhikHCOnA9pJEDyn/fp3/KJIrO8oW6a04seWGm8hxOl/lbe8fSpcTPJTaSaw3z5/ACSZQtZQGddjqGmvMVOFldPtyPIsbvZC8WJSQYC/3BrOTRA7dUzLoCHpTSvcQcoKOpvhnqeMqrSbklvFr9xXqPSVeY7tzEThDyEYzFwr9/NvDmizFIR11Bt6N/1Ql8Kc5wsJewYO6KJHhXX+gmf0FHVdRTBmANGmR+Z7XYV76Vu/NMHEQiRBlfhXuZ2JVfLkawB13fseskTyqJ3WXeddV37uCJEllDXvSZ2VjKAG6xYtKJajAoF1zlQ/zcug8q7c/CqXMPrFieGPTUFHO3ZH5qy9rcKn6sD7WiQgdc56IBBGjs+WEG+UZgAJ80QWjLDhOlPnBA3IFyEAqrbOqcxz8rzm94khd3lM0LMv6mn7920hI4w+33HE3995XMbV2EARgsl/hSj+4Z8qGJvA/OrNVnS4cj3KNaGtu3qWCmh1LoA5ddQT/ndihH0Ne939uld49UObFazVx72ZKfxDFIXprLS1ObVXYr0gl2JgBBLrvmJRTbHXpfObLqr7SFi3oNuvhHUDb9Vv82EeGlZg0Tyj0A8VPBNjFQug8LXQCeXeH94LWZxAa51T48kiCWPEc41jwCx6SZ5zD2eeZbn1gx0K6MXnd7AdKxDHQKqPd3O1L/hyhB6Y7hzTrR20EsA+YvgjtnG8GMPjG3RJ0nid92leP2/FUz5R39VhOzVLSfc3+cxQlifi0VI+IzPaDzm7NA4DnBajiWGQDq8TyX0V4z1tk5sKTvHEVrmVszfyaR+PFDclfsJIV8quNpltMiugw6c+ecfQl8FCR7mWdl5CfuRpe631yRov3s5InCjJ2rcUB0CZN5MTCi67JEJCbXToNVbaXp73YorZ36Gg2RdgGq4xfux+F/AlPHN3Z13ojsf/j7oPuyA0Eti/tr9WG5Gj/6Mzs83xRacPBUKdPIRFRx6PzLSVHBoS3tpkCu9V5zN5N1T2boX5nquWgLIgXUa+NxCg2mF9u8pV9jMJgq41OoWdcGkimxYEuC/8ftYO60W7SDukdnBlA87ZJdeDBUDB/cjyBdludrBWH0fy86fXrEGSK3Ydjm9TXKgiGdc7S5MXA8dTl/ToedoHF0BmTdMY+H65uc5h9KkJ41lxoawYClm5RhZR53j0FJJ36Y1gPzS2GZRqXR+FwuDZ0ODEvrLf9aRV6DgZd/xtTGLon13IlopAY/r+Xscu0/aMHzKdo9xtS2IPne4dmMNN/l5jpzeW/O4hYCnLG7uZFFfBfz3bLH1HZCYOQUjraQyQsN5phpUyDgl4IU7cwNzAfMAcGBSsOAwIaBBQ4lvc+o9joslOGjdNDPn06TYmo8gQUR5J5HwDviE87f215rUz3C7nExp8= - - accesscontrol.windows.net - seabvtd2rp1users - http://windowscloudbackup/m3 - - mock#ACIK - RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US - - - 1.0 - \ No newline at end of file +63d3030d-0ad0-4c4f-8bce-c95a0a669524HyperVRecoveryManagerVaultvault4RecordingTestsMIIKmgIBAzCCCloGCSqGSIb3DQEHAaCCCksEggpHMIIKQzCCBgwGCSqGSIb3DQEHAaCCBf0EggX5MIIF9TCCBfEGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAhVEsXmyd0GIgICB9AEggTYWPI2tsfWQlNBhVgiPawaqYLtRAlcTz0mUtpx5i9R00O2fQ0IRleYI6vpWmPRNfWXDNIR2znoWoguH4R3LamnCgSoEoRri4pw2Rii71YVcl1w8B4Qf5CphMTY5iqe8mgMuZfydrl2q/O1XuRQR9hW1CRL3RyeO4H/lxBQoNwmHSuxVsTazUFQH3PTgHAqkuDTN18MYgOLDFEZPrNpPFzJ3/QiTuh9ZNAkilZHnsELA4yLaSxP9hR+C6tWpH3EoBbQUaxbn9GXdr/KD5ZqxNny0hep6NrDDzoIHFKX1L9RVD9MIOzi7cYZPkycGo1Ebd5GQBd7QhOfPAU3o4vE++OItI/dLS8VPuL1E6vSbqguxDx5ZOZkQf2BJqzJ91JUffzzJU+Dj0FwN5O/A/bdgtK6JkTHdNCGLRecUFg++Ex0tDiZg/dlsVi6YvSLObPDuZ9gmgMHOZhRQPLn+w0syI2xgf2xDdEyQh7uB7CSsIMkIbXC1w5nFT268QwR67i1ZsWw7j/dcLv9Brlvuzffzc62ZHlcrvu16J1EKmvuLHPYFzbOlWRj0bM56stmqKtw1c26HkFrwfNj1wUcz663VBaOklEuTMSrQXT1AeL9bcdLbZNzRfPuhuYEe4zGyyeCKL5J5N+7lhbEAQPoL1iY46jGH70DfEq0uk+uqdhougKAFnr5WUxzHVE3WSuTVdlO7ovITGlWZY6S7fQFox2jjoacOZCePgVLdoiSfTVGWLLn4/Eqnn0bXlRbczo35Jc4RYTz8wk5IYHyLS8XWnFSTgOLqqNDs2egptUHwWU+zXu0MW3+Ga3obbzU3qsUt2OjLSjVyrfiOwLdnLAH4YMiLgwKsNCwl4+Fp8bpW5fASAYR91Jk+MluM/04GsIcf0pgB6wprFeR99L0cwyjABc0qXGYuksF8rQHfCMYvH5AuYi9uhwX9l7eFSpfvdNsRvNzgEBDuY4QRmcJXPTIvTZB9A+PwezYr4g3GT/xEEOUqD43iBMZq6Pfy8TGiPyAnIPOGh8O4jzljBthm8QU2V1vlKhSa5X/EDECsQmvl69rbvYl6QrD/flcMxDOMJ54+OdjQlqKhfoZIs18o9SPA0wFzEwrfjBFjpcYNTO5iE7I7Uf6VVfFxeH5A1RYRY1nVSJ8av7JNsAwAJUcI+JhcNBzlZ7M+yc6Wvfo3mR0m1tqAq626Wf5DuPBNvRtZ0WIUIjH9ABO9au1SiaWvrRYIA3jZrZx2c9F0TAeg4z0Kg7bc/beSCHyhtH7LNfbemVbGXuuX5/8uOzeaiDhjYHu2YhmwCaz5Qvr7w9+GxIEo594l+bP/pBJIhm27edPyIUmtAYuGw89+UUZcj1s5yUf4qrqtA8ERFz3DpJWc1TRfCz0zNFw0yleJb/fv5fDHKJqbxA0kEPg4ihQoLcPWoJhLpTMhkQQja23ieSixB7m1wtKt978eS2HHFvNVc5A9RIQe3W4j51vvmZ/BU2R+s3uJTEZO63TI/txYCoYjuxz0tf77yBCKnLBMVRGuR4Rvzqech5gfGUijOcKMyBZ2tvNM2U/noB+zrgZ5OnjlS7mrSZ7qEP1sYXTeO08+aWrITChvxAzEkTBrlPfRExJzOWK+jTQw1ZMPBUvJErTV2CUX0PYk/7nHKOopZ71bQX84jGB3zATBgkqhkiG9w0BCRUxBgQEAQAAADBbBgkqhkiG9w0BCRQxTh5MAHsARABBADcAMwA1ADQAOABCAC0AMgA1ADQARQAtADQAOAA0ADIALQBCAEYAOAAzAC0AQgA2AEYAOQBBADAANQAyAEEARgBFADAAfTBrBgkrBgEEAYI3EQExXh5cAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcgAgAHYAMQAuADAwggQvBgkqhkiG9w0BBwagggQgMIIEHAIBADCCBBUGCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEGMA4ECJ60+hDrgR8DAgIH0ICCA+h15qYAkxVOvWrR11Yd7UOmo06UAtN+2dtf+lWorT21gEmKFMlpDSnKbQM6ctV9XFctTKPCN3qCOWcGxuR4xmINUR5XhdYTOe9+I7Vsm4/q2fKSn4sWwBcZ4gIHT+O7nobHiVqEri/cbjnN41kOgg9TcKKk+Mp0M4EySV5FQ6XjOj6jcVJzngTzFLxrnmMI8nh+QsG8voFHNWOEu1SKPR7DJQbgVLtbr/W2hLSlIEVYSMoONVJvxKgNw15KD3UP2BPFZM55xHopAYRBMOfsl3l9b6SJOjDFyCcbtljtt6z6z9Q/f6v4hyUcQ64IYL5iy+Wg+/WugNSVHnp8mYmG/SWpWzZq9YiosLsHdzOdT7S9yAptdUMu1uzHPacJ9IKyIgCilPieCV1qHQWPxxocax4uKjpVe+vb7+7MCpEdk9QfSLDJf3G0fYTuA9tZ9a+CJR2XRV+6EBmcSsefqwKTu5mfOxf3KOrTYpqB7yK0KwuxEKHkBxRVuLmqPbq9U5AMdYgrbPVqmlSXgbF1dIexHydFkx2/ECSgQOs0+F9jqrI7uWsss7qoc+Is6JbAAB3iLJLG0YyLVLMHKX6tptFN7BLa0z7Eer8peherd50uy+ezhmmi8vr8PwNTl0BnY7ixOPjaJ5NXoTREZXO65AsMvz5jhWXcTCTkhvnHn0bZmp7wlJua6CABPAWnBhsxSgIJoCrdnNsVGW4s2iKzmnQVYvYfGPfRv3gBqZRdzYmThkO1aRjywdmcLLgqjw+cxo8xTIFsWGQO2OylguFjTltEERH2g3b5/0W46qDzwMLDujnyDYA48rjIUiedXOFDTWhxpDHqV9eK9IKIPaA6WYUXqiutG/7GGGf/EjVHdmLTOpvq+GP6tntHXAS4/JGAYTkfoajaqRNhNF+AClR6OySSiPUGsR6tCuujXmeLAMZtnSCJ5nskSsdIILKIHrLh+Ltwu7kwtC29hY/4whTjUXHM/Y3noryoqobP/hxucuzKBTSPPAgT1Y8/6lI6/sy/rtJ1tobGVKAObLybO27ivceCDP+EB/lBgIeFFa6Dxr/tqqIyTLIT78YzPGhx6h+qxU6Iu1N9LWy+aGJS6OkNeJMKhKAHAqten7Px151MHSWY4q7NjJnYKKXzSUGAxGN5Z6SukBCWgkL9m+1807alacSX8/ZPAwm5iGqbUika+jolZ1D/oiFO1JgreH4zNKd9DVrOjcfZObPJWvVhlCqp4DtQSOepooDVJf5X39IMqUUrWB5dQc0QoChIUfI8bzyQf6F+M7UXEgwRmslB3He/mfbcY1O6szkxrMP4McHKQuj33IRTf456UuVYXIWUMDcwHzAHBgUrDgMCGgQUiblTVSd3CXgIAd8YnilibQ969EQEFPnE5IR2QTrZpUcQZlrt4m5l3T/eaccesscontrol.windows.netseabvtd2rp1usershttp://windowscloudbackup/m32tI2v7RwUyOaD8LkBcaLnQ==RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US1.0 diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_CreateAndAssociateTest.json b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_CreateAndAssociateTest.json index 53a8c4bb4fad..c6f92e46347f 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_CreateAndAssociateTest.json +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_CreateAndAssociateTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16,34 +16,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "334fdf1ad69fceee879f79e713de00a5" + "212f1bbcbc33397a90a859bcc8429139" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:05:22 GMT" + "Thu, 16 Apr 2015 19:08:53 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -57,34 +57,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "75dd6e349783c4fa94345c5f252fb0a2" + "7e210873e030301696f3657bbbdd672f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:05:23 GMT" + "Thu, 16 Apr 2015 19:08:54 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -98,34 +98,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "c9987cd9eaddcce8aaa6a5264cee9b2b" + "86a479af4df1345cb8b51c213c91a377" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:05:29 GMT" + "Thu, 16 Apr 2015 19:08:59 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -139,34 +139,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "03822990adc1c432af40232928c50e7a" + "9d618ec0ade13693a23c36adcc78dab4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:05:37 GMT" + "Thu, 16 Apr 2015 19:09:10 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -180,34 +180,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "85b33729332ec141860fe4d44711a255" + "7018de3da5b23c97b812cfa01483a0e3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:05:46 GMT" + "Thu, 16 Apr 2015 19:09:18 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -221,34 +221,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "8713a2ba1506ce93a916abd9f5d46902" + "619be7dcf4fe3dad9ba2e0a765dfddad" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:05:53 GMT" + "Thu, 16 Apr 2015 19:09:28 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -262,34 +262,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "a06405d33d09cdc992cf9b5694c66091" + "faeaea80a11d3440a18b2b30667fa2a7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:01 GMT" + "Thu, 16 Apr 2015 19:09:37 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -303,34 +303,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "e018563c9b62ce10902db65c70c41f5f" + "8512fa39652439818048b73e9b6e1f52" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:08 GMT" + "Thu, 16 Apr 2015 19:09:44 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -344,34 +344,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "b46d871773f2c696a512978bd611662f" + "302a7cabbf0a32558f3caab52746ab09" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:15 GMT" + "Thu, 16 Apr 2015 19:09:53 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -385,34 +385,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "56d93bea6316c6fcbe3bc75897d10073" + "bf7aa3f896253b65aff8f3803872ed08" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:23 GMT" + "Thu, 16 Apr 2015 19:10:03 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -426,34 +426,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "08b28dc62655c9f49559e55e029b43b5" + "68989f0004653a26b743412b0bfa8ece" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:31 GMT" + "Thu, 16 Apr 2015 19:10:12 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -467,34 +467,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "da0373bd6184cdb5974707bc6792bbac" + "42962f21cd13321589f7f9ded5ce913d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:38 GMT" + "Thu, 16 Apr 2015 19:10:22 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -508,34 +508,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "a4403f11a2f9cacb96dfe23191d0c4ae" + "303a46b3818835a1a831051b164e873f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:46 GMT" + "Thu, 16 Apr 2015 19:10:31 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -549,34 +549,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "727a321b9a9dc7e3baadf46eb944425a" + "66d593cf76ff3c578f75ab1cc995d625" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:53 GMT" + "Thu, 16 Apr 2015 19:10:40 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -590,34 +590,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "747ca88866b6c620a8f6be6dd4f34b8f" + "42929e8e425d378bb402c01ddb3ed981" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:07:01 GMT" + "Thu, 16 Apr 2015 19:10:49 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -631,34 +631,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "c4b140ea7ce7cf458af051ee5cbe7159" + "baad5c66a3a63ab5b2ecdede587c8058" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:07:08 GMT" + "Thu, 16 Apr 2015 19:10:57 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -672,34 +672,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "5e021593dbcdc383a71d599ea730e775" + "3d9a6e3d0c603568b957af7b29b35de1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:07:16 GMT" + "Thu, 16 Apr 2015 19:11:07 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -713,34 +713,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "76304f1b345fc02cbc147a2ed775311e" + "dcb907d49df6301bb59c63eba3b48430" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:07:23 GMT" + "Thu, 16 Apr 2015 19:11:16 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -754,34 +754,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "bbbc098700adcdb195e6ad123732a571" + "ff5ad5b70aa1361abd4713fcaef7aa99" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:07:31 GMT" + "Thu, 16 Apr 2015 19:11:24 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -795,116 +795,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "c4f4db536efecb338d1be8bad3afab63" + "6b2c48717bbe328aa1d5405dd77fdc36" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:07:38 GMT" + "Thu, 16 Apr 2015 19:11:28 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "33fa781ef23bcba3b3a3480eb9ef5ce3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:07:45 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "2f8f523d48acc4bb86825bf0725eb327" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:07:48 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/ProtectionContainers?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1Byb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/ProtectionContainers?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1Byb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -912,7 +830,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "fe3a8086-dbe4-4b89-aa41-b402c656bd89-2015-02-23 15:05:24Z-P" + "68848f6d-d0b8-4679-a624-9f0cdbfff66a-2015-04-16 19:08:55Z-P" ], "x-ms-version": [ "2013-03-01" @@ -921,10 +839,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n \r\n \r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n Cloud_0_2bb286ca_78225OE72093\r\n Primary\r\n \r\n \r\n b6a2ef89-347c-48c5-b33b-5b8bd8ac8154\r\n b6a2ef89-347c-48c5-b33b-5b8bd8ac8154\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n Microsoft Azure\r\n PairingFailed\r\n \r\n \r\n true\r\n 0\r\n HyperVReplicaAzure\r\n <HyperVReplicaAzureProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ActiveStorageAccount>\r\n <StorageAccountName>hostersfcbvtvaulte423371</StorageAccountName>\r\n <SubscriptionId>e423371c-63cd-497e-b5b0-eb6d0b306d7e</SubscriptionId>\r\n </ActiveStorageAccount>\r\n <ApplicationConsistentSnapshotFrequencyInHours>0</ApplicationConsistentSnapshotFrequencyInHours>\r\n <EncryptionEnabled>false</EncryptionEnabled>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPointHistoryDuration>0</RecoveryPointHistoryDuration>\r\n <ReplicationInterval>300</ReplicationInterval>\r\n</HyperVReplicaAzureProtectionProfileDetails>\r\n \r\n \r\n 9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n cloudOn21\r\n \r\n \r\n 3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n VMM\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n \r\n", + "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n \r\n \r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n VMM\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n phase2PrimaryCloud\r\n \r\n \r\n 7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n VMM\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "2814" + "912" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -939,20 +857,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "fe3a8086-dbe4-4b89-aa41-b402c656bd89-2015-02-23 15:05:24Z-P" + "68848f6d-d0b8-4679-a624-9f0cdbfff66a-2015-04-16 19:08:55Z-P" ], "x-ms-request-id": [ - "5f3e15546504c177bbedd9205ca7eb3e" + "83ba01c2ac463356ab54e00f3b4b5c54" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:05:27 GMT" + "Thu, 16 Apr 2015 19:08:58 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -965,149 +883,25 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/ProtectionProfiles/CreateAndAssociate?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1Byb3RlY3Rpb25Qcm9maWxlcy9DcmVhdGVBbmRBc3NvY2lhdGU/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/ProtectionProfiles/CreateAndAssociate?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1Byb3RlY3Rpb25Qcm9maWxlcy9DcmVhdGVBbmRBc3NvY2lhdGU/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==", "RequestMethod": "POST", - "RequestBody": "\r\n \r\n cloudOn19\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileInput xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowReplicaDeletion>true</AllowReplicaDeletion>\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath i:nil=\"true\" />\r\n <OfflineReplicationImportPath i:nil=\"true\" />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>300</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileInput>\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n \r\n", + "RequestBody": "\r\n \r\n phase2RecoveryCloud\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileInput xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowReplicaDeletion>true</AllowReplicaDeletion>\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath i:nil=\"true\" />\r\n <OfflineReplicationImportPath i:nil=\"true\" />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>300</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileInput>\r\n \r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n \r\n", "RequestHeaders": { "Content-Type": [ "application/xml" ], "Content-Length": [ - "1598" + "1608" ], "Accept": [ "application/xml" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1424700329880)\\/\",\"NotAfterTimestamp\":\"\\/Date(1424721929880)\\/\",\"ClientRequestId\":\"4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NFrR9g+7oUyzw/GqjxaQW75rYnPsx7pfpflIt7eN8oA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" - ], - "x-ms-client-request-id": [ - "4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P" - ], - "x-ms-request-id": [ - "4005aa7ab540c75e829b913267be9ff0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:05:31 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "edf89d2f-54db-49f6-b76f-0ede68f223d1-2015-02-23 15:05:38Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n</InlineWorkflowTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n</InlineWorkflowTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "2501" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "edf89d2f-54db-49f6-b76f-0ede68f223d1-2015-02-23 15:05:38Z-P" - ], - "x-ms-request-id": [ - "88a9da25ad26cec6bf209034ca93c265" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:05:39 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" + "{\"NotBeforeTimestamp\":\"\\/Date(1429207740573)\\/\",\"NotAfterTimestamp\":\"\\/Date(1429812540573)\\/\",\"ClientRequestId\":\"66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IiZZ5JXRqcpV8i77OYDWKoTkL3SsWvhm25iuQCgBdFY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "x-ms-client-request-id": [ - "16586ff0-b917-4a4b-87c0-4f11a9bc1927-2015-02-23 15:05:46Z-P" + "66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1116,10 +910,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n</InlineWorkflowTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n</InlineWorkflowTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n</InlineWorkflowTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n</InlineWorkflowTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "2501" + "2519" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1134,20 +928,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "16586ff0-b917-4a4b-87c0-4f11a9bc1927-2015-02-23 15:05:46Z-P" + "66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P" ], "x-ms-request-id": [ - "6ca1e7d743bccd2f89d6655cd6e9bc43" + "c51d6b1fdb0938bca1d468d4cd3b272d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:05:48 GMT" + "Thu, 16 Apr 2015 19:09:04 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1160,8 +954,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1169,7 +963,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "1e1aa957-0d06-4abf-bb7f-eb73a4989f9c-2015-02-23 15:05:54Z-P" + "f7701824-0173-43f0-bc70-03522b0beb4e-2015-04-16 19:09:10Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1178,10 +972,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:05:49Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:09:05Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14177" + "14194" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1196,20 +990,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "1e1aa957-0d06-4abf-bb7f-eb73a4989f9c-2015-02-23 15:05:54Z-P" + "f7701824-0173-43f0-bc70-03522b0beb4e-2015-04-16 19:09:10Z-P" ], "x-ms-request-id": [ - "67bd9d18c315cc0d9986c2b95ac7dc36" + "a3c13e6035483a62bf4d034587f00b2f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:05:55 GMT" + "Thu, 16 Apr 2015 19:09:12 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1222,8 +1016,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1231,7 +1025,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "ffa5aabf-9666-4f96-ba61-da91baa4e266-2015-02-23 15:06:02Z-P" + "c90321c9-0cf2-4d84-b6d6-67877777f107-2015-04-16 19:09:19Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1240,10 +1034,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:05:49Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:09:05Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14177" + "14194" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1258,20 +1052,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "ffa5aabf-9666-4f96-ba61-da91baa4e266-2015-02-23 15:06:02Z-P" + "c90321c9-0cf2-4d84-b6d6-67877777f107-2015-04-16 19:09:19Z-P" ], "x-ms-request-id": [ - "c479be42d7e0cf4ea18d7fd5e5d3eae1" + "40835dba06493d8399bdcb05b85ce51e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:02 GMT" + "Thu, 16 Apr 2015 19:09:21 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1284,8 +1078,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1293,7 +1087,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "548f7515-8e97-41d0-88ec-6feb2446a35c-2015-02-23 15:06:09Z-P" + "c3781fd7-315b-423c-bf95-ff25e846a9ff-2015-04-16 19:09:28Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1302,10 +1096,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:05:49Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:09:05Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14177" + "14194" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1320,20 +1114,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "548f7515-8e97-41d0-88ec-6feb2446a35c-2015-02-23 15:06:09Z-P" + "c3781fd7-315b-423c-bf95-ff25e846a9ff-2015-04-16 19:09:28Z-P" ], "x-ms-request-id": [ - "1729097f8485c71ba100f1a2b73b169c" + "6c55b66646ba3cb0ace6b68eafcf9354" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:10 GMT" + "Thu, 16 Apr 2015 19:09:30 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1346,8 +1140,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1355,7 +1149,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "2a4423cc-489e-4385-a7b8-1fcbceee11fa-2015-02-23 15:06:17Z-P" + "d4393756-ec3f-447e-8b88-a95191693a7f-2015-04-16 19:09:37Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1364,10 +1158,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:05:49Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:09:05Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14177" + "14194" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1382,20 +1176,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "2a4423cc-489e-4385-a7b8-1fcbceee11fa-2015-02-23 15:06:17Z-P" + "d4393756-ec3f-447e-8b88-a95191693a7f-2015-04-16 19:09:37Z-P" ], "x-ms-request-id": [ - "4bd544ed18abcb5aa3fe2d8c7f74c8ee" + "6f446d7b2cbc3203ae9cadce06f05fe2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:17 GMT" + "Thu, 16 Apr 2015 19:09:38 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1408,8 +1202,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1417,7 +1211,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "1851c8d3-1c60-4df8-a670-8bee11c0bce7-2015-02-23 15:06:25Z-P" + "4d27e7c7-ec4a-4fa0-aa8e-9688180b9d7e-2015-04-16 19:09:45Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1426,10 +1220,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:05:49Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:09:05Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14177" + "14194" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1444,20 +1238,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "1851c8d3-1c60-4df8-a670-8bee11c0bce7-2015-02-23 15:06:25Z-P" + "4d27e7c7-ec4a-4fa0-aa8e-9688180b9d7e-2015-04-16 19:09:45Z-P" ], "x-ms-request-id": [ - "e521ad428324cd408165758cee48b7e6" + "f40d28ed9b583ed6a5ac6170f1553e2c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:25 GMT" + "Thu, 16 Apr 2015 19:09:48 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1470,8 +1264,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1479,7 +1273,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "ef26c28a-005a-40c8-b561-fe5ac2b065a0-2015-02-23 15:06:32Z-P" + "be6a24a3-ec4d-4bb6-83ed-2e6c5c1dc418-2015-04-16 19:09:54Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1488,10 +1282,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:06:32Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:09:05Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14193" + "14194" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1506,20 +1300,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "ef26c28a-005a-40c8-b561-fe5ac2b065a0-2015-02-23 15:06:32Z-P" + "be6a24a3-ec4d-4bb6-83ed-2e6c5c1dc418-2015-04-16 19:09:54Z-P" ], "x-ms-request-id": [ - "3fe8b46c1a96cc25b0a7006f0e1b71ac" + "f93cd2856c483249bf4320cd9b6480e9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:32 GMT" + "Thu, 16 Apr 2015 19:09:56 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1532,8 +1326,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1541,7 +1335,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "aa877d7a-e2a3-483b-a844-3345ba2c93a5-2015-02-23 15:06:39Z-P" + "793e2266-21d2-4781-9fc2-4e7e4967c710-2015-04-16 19:10:03Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1550,10 +1344,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:06:32Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:01Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14193" + "14210" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1568,20 +1362,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "aa877d7a-e2a3-483b-a844-3345ba2c93a5-2015-02-23 15:06:39Z-P" + "793e2266-21d2-4781-9fc2-4e7e4967c710-2015-04-16 19:10:03Z-P" ], "x-ms-request-id": [ - "e7e6814fa61dc69d9797e07b98255c3c" + "c73827572faf325fbd7064a6a5f159da" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:40 GMT" + "Thu, 16 Apr 2015 19:10:06 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1594,8 +1388,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1603,7 +1397,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "333f15b0-2f30-4e34-8788-1cd032c32c17-2015-02-23 15:06:47Z-P" + "a7e22ed5-1ec8-4f47-a375-4cc71ca889de-2015-04-16 19:10:12Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1612,10 +1406,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:06:32Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:08Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14193" + "14226" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1630,20 +1424,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "333f15b0-2f30-4e34-8788-1cd032c32c17-2015-02-23 15:06:47Z-P" + "a7e22ed5-1ec8-4f47-a375-4cc71ca889de-2015-04-16 19:10:12Z-P" ], "x-ms-request-id": [ - "3049ecfa9f03ce6a845aa15bfebd8c10" + "7bf5df4b117a36dbb7c98b6fb205bed7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:47 GMT" + "Thu, 16 Apr 2015 19:10:15 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1656,8 +1450,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1665,7 +1459,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "b381418e-552a-4b4d-9c3d-577480cb57e9-2015-02-23 15:06:54Z-P" + "166c9500-b4c5-40c6-8bda-ba4f189c12d8-2015-04-16 19:10:22Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1674,10 +1468,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:06:49Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:17Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14209" + "14231" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1692,20 +1486,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "b381418e-552a-4b4d-9c3d-577480cb57e9-2015-02-23 15:06:54Z-P" + "166c9500-b4c5-40c6-8bda-ba4f189c12d8-2015-04-16 19:10:22Z-P" ], "x-ms-request-id": [ - "8b1cde7e6d72cb35832c9a87af82e410" + "886bebcbfe7b3670b15553159f4a5eb5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:06:54 GMT" + "Thu, 16 Apr 2015 19:10:24 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1718,8 +1512,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1727,7 +1521,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "735cd077-32a3-4306-bd95-107bdaa46d02-2015-02-23 15:07:02Z-P" + "a5185359-2dc7-45be-b223-5656710ab281-2015-04-16 19:10:31Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1736,10 +1530,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:06:58Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.396864Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:17Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14214" + "14231" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1754,20 +1548,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "735cd077-32a3-4306-bd95-107bdaa46d02-2015-02-23 15:07:02Z-P" + "a5185359-2dc7-45be-b223-5656710ab281-2015-04-16 19:10:31Z-P" ], "x-ms-request-id": [ - "6ef9058cb6a7c4a788b7b078a693a833" + "dade720da71b3698969f21711a1fd03d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:07:03 GMT" + "Thu, 16 Apr 2015 19:10:33 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1780,8 +1574,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1789,7 +1583,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "a3a63011-5fe2-48b1-a39b-609483a1b753-2015-02-23 15:07:09Z-P" + "000deae2-3d70-4523-a30d-7baa2e55eb00-2015-04-16 19:10:41Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1798,10 +1592,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:06:58Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:40Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:41.1082255Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:40.8819225Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:41.1863523Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6781832Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:40Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14214" + "14258" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1816,20 +1610,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "a3a63011-5fe2-48b1-a39b-609483a1b753-2015-02-23 15:07:09Z-P" + "000deae2-3d70-4523-a30d-7baa2e55eb00-2015-04-16 19:10:41Z-P" ], "x-ms-request-id": [ - "5f293a9e110accb0b12000ea351924f8" + "7ac9c3ea4a2d31388baaf2e00c9f7dfe" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:07:10 GMT" + "Thu, 16 Apr 2015 19:10:42 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1842,8 +1636,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1851,7 +1645,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "c3d4a611-182a-430b-93ea-0c8d6acd3613-2015-02-23 15:07:16Z-P" + "189405e3-30e2-450e-9d1c-67a51d37ad43-2015-04-16 19:10:49Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1860,10 +1654,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.2254338Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:06:58Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:47Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:41.1082255Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:40.8819225Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:47.491802Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:41.1863523Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:47.6168012Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6781832Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:48Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14214" + "14273" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1878,20 +1672,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "c3d4a611-182a-430b-93ea-0c8d6acd3613-2015-02-23 15:07:16Z-P" + "189405e3-30e2-450e-9d1c-67a51d37ad43-2015-04-16 19:10:49Z-P" ], "x-ms-request-id": [ - "6ac8bf9a1106cfddb7c6748aab2fde71" + "6b70456d37f73b3fa65afd37f0f76a9c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:07:17 GMT" + "Thu, 16 Apr 2015 19:10:51 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1904,8 +1698,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1913,7 +1707,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "1cfa23bf-2b55-4de3-b237-ef7e3b7e5078-2015-02-23 15:07:24Z-P" + "b57ec2f0-455b-4ad4-82a2-c5413ec736e4-2015-04-16 19:10:57Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1922,10 +1716,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:21Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:21.4226174Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.1882398Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.4851145Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6471204Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:18Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:57Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:41.1082255Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:40.8819225Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:47.491802Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:41.1863523Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:52.2104325Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:47.6168012Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:58.2542577Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:52.3354301Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6781832Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:48Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14240" + "14294" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1940,20 +1734,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "1cfa23bf-2b55-4de3-b237-ef7e3b7e5078-2015-02-23 15:07:24Z-P" + "b57ec2f0-455b-4ad4-82a2-c5413ec736e4-2015-04-16 19:10:57Z-P" ], "x-ms-request-id": [ - "8fb0ee1373a3c0e783ce51e56e05de86" + "bd76370c23433c3080e322a85dbaa4e8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:07:24 GMT" + "Thu, 16 Apr 2015 19:11:00 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1966,8 +1760,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1975,7 +1769,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "fe84b2cd-dba6-4bee-ac52-fda7f07a3f2b-2015-02-23 15:07:31Z-P" + "ca063eff-e0ae-43e6-8f22-106608e313a3-2015-04-16 19:11:07Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1984,10 +1778,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:27Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:21.4226174Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.1882398Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:27.6521016Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.4851145Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:27.7217067Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6471204Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:29Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:57Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:41.1082255Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:40.8819225Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:47.491802Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:41.1863523Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:52.2104325Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:47.6168012Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:58.2542577Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:52.3354301Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6781832Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:48Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14256" + "14294" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -2002,20 +1796,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "fe84b2cd-dba6-4bee-ac52-fda7f07a3f2b-2015-02-23 15:07:31Z-P" + "ca063eff-e0ae-43e6-8f22-106608e313a3-2015-04-16 19:11:07Z-P" ], "x-ms-request-id": [ - "0b8b83ebffe1c1df959af35faadc15f6" + "022c3fdf92e9350899ef0d7c10db62e3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:07:31 GMT" + "Thu, 16 Apr 2015 19:11:09 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -2028,8 +1822,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2037,7 +1831,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "280cf55f-4ef1-4cdd-8361-5727497d621f-2015-02-23 15:07:39Z-P" + "226e798a-6c44-4927-9d1a-de8a1d0cdd19-2015-04-16 19:11:16Z-P" ], "x-ms-version": [ "2013-03-01" @@ -2046,10 +1840,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:36Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:21.4226174Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.1882398Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:27.6521016Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.4851145Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:36.154866Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:27.7217067Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:36.2329888Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6471204Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:29Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n \r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n InProgress\r\n InProgress\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:57Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:41.1082255Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:40.8819225Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:47.491802Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:41.1863523Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:52.2104325Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:47.6168012Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:58.2542577Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:52.3354301Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6781832Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:48Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14271" + "14294" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -2064,20 +1858,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "280cf55f-4ef1-4cdd-8361-5727497d621f-2015-02-23 15:07:39Z-P" + "226e798a-6c44-4927-9d1a-de8a1d0cdd19-2015-04-16 19:11:16Z-P" ], "x-ms-request-id": [ - "01c3742c8bdac323a1a7b84276562a2e" + "732c1f3ad8fb38a08be828e3226c6f6d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:07:40 GMT" + "Thu, 16 Apr 2015 19:11:17 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -2090,8 +1884,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2099,7 +1893,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "bd27590b-1edf-4f97-a569-f38e24325b8a-2015-02-23 15:07:47Z-P" + "832acebe-5e42-44a9-8fed-aa211db48331-2015-04-16 19:11:24Z-P" ], "x-ms-version": [ "2013-03-01" @@ -2108,10 +1902,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n 2/23/2015 3:07:42 PM\r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n Succeeded\r\n Completed\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:41Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:21.4226174Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.1882398Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:27.6521016Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.4851145Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:36.154866Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:27.7217067Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:41.9629965Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:36.2329888Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6471204Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:29Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n 2015-04-16T19:11:23Z\r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n Succeeded\r\n Completed\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:11:22Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:41.1082255Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:40.8819225Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:47.491802Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:41.1863523Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:52.2104325Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:47.6168012Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:58.2542577Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:52.3354301Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6781832Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:48Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14290" + "14308" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -2126,20 +1920,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "bd27590b-1edf-4f97-a569-f38e24325b8a-2015-02-23 15:07:47Z-P" + "832acebe-5e42-44a9-8fed-aa211db48331-2015-04-16 19:11:24Z-P" ], "x-ms-request-id": [ - "d537db9df140c732b85a2e31670df81f" + "00e5ffad4dc937cf87dbb79a4015a1d4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:07:48 GMT" + "Thu, 16 Apr 2015 19:11:26 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -2152,8 +1946,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/dba6e09f-21f4-441b-8108-22d07f96c9e8?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZGJhNmUwOWYtMjFmNC00NDFiLTgxMDgtMjJkMDdmOTZjOWU4P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/3f71ca6a-b283-4aa2-a931-2d84260b91b1?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvM2Y3MWNhNmEtYjI4My00YWEyLWE5MzEtMmQ4NDI2MGI5MWIxP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2161,7 +1955,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "4c2d94f3-8ca1-47d7-89ce-bbfc9cfb74c1-2015-02-23 15:07:49Z-P" + "7d672df4-3d05-4bed-97d2-4d62403028ce-2015-04-16 19:11:28Z-P" ], "x-ms-version": [ "2013-03-01" @@ -2170,10 +1964,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n dba6e09f-21f4-441b-8108-22d07f96c9e8\r\n 4dbbe24a-673b-4380-88a4-f1060d673ca4-2015-02-23 15:05:29Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n 2/23/2015 3:07:42 PM\r\n \r\n CloudPairing\r\n 2/23/2015 3:05:31 PM\r\n Succeeded\r\n Completed\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:41Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>769b5eaf-0796-4517-a30c-109a6c24be75</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:21.4226174Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.1882398Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>aecd5f98-fa90-4771-8ef6-4081124d947c</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:27.6521016Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:21.4851145Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>0fc5163c-40ab-4f1c-a851-5c8591ba74f9</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:36.154866Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:27.7217067Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>465df024-5392-49fe-ba47-949779ed2782</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:07:41.9629965Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:07:36.2329888Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>4331b379-8845-4bbb-9e22-2c6cf07db19d</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6471204Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:07:29Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>0b2779e5-ca2c-46a2-bf8e-130299ae6f08</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:05:48.2564743Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:47.9752231Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>39e630fc-c0b0-4cf4-8547-d488bef9ec72</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:31.8179586Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:05:48.3189724Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>8251a263-6829-4557-b8d9-9bfff35c237e</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:48.9003593Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:31.8960919Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>13b46992-46ef-4b58-b82a-e2d6c0bc417d</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:06:59.5177643Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:06:49.0097387Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>087511a3-98e5-4c2e-b12c-d5564765fc74</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:05:47.6158625Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 3f71ca6a-b283-4aa2-a931-2d84260b91b1\r\n 66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Protection configuration\r\n 2015-04-16T19:11:27Z\r\n \r\n CloudPairing\r\n 2015-04-16T19:09:02.3793845Z\r\n Succeeded\r\n Completed\r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Configuring Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:11:27Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>2fe3e4fa-25af-4ec0-9422-6079e8773963</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:41.1082255Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:40.8819225Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d83d8898-d973-4edf-b437-728a7fc0b1d2</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:47.491802Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:41.1863523Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>988ee847-8039-4553-b745-8af3c44d982c</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:52.2104325Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:47.6168012Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>000e75cb-a365-46a1-a5f4-2e57e7944d43</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:58.2542577Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:52.3354301Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>65801911-461f-4c78-a85f-bd855ea96b7f</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6781832Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Configuring Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-04-16T19:10:48Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a927a407-59b0-4dd8-b15b-eb6942e3a544</d2p1:ID>\r\n <d2p1:Name>Check protection prerequisites</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:09:05.1584298Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:04.9292236Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5456e3c6-ba06-4d34-be59-873b0ab13639</d2p1:ID>\r\n <d2p1:Name>Prepare the server</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:01.7197941Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:09:05.2365775Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>bfb09520-628f-4741-bded-988d9e5b5a79</d2p1:ID>\r\n <d2p1:Name>Prepare for configuring protection</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:08.9948996Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:01.8447856Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>dbf94145-bd83-4e92-963a-45269bb64c90</d2p1:ID>\r\n <d2p1:Name>Configure the protection settings</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-04-16T19:10:18.1622473Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-04-16T19:10:09.1980215Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>c75e1a1a-d5de-4fa3-9ff6-49afc1847f00</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-04-16T19:09:04.6625422Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14290" + "14308" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -2188,20 +1982,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "4c2d94f3-8ca1-47d7-89ce-bbfc9cfb74c1-2015-02-23 15:07:49Z-P" + "7d672df4-3d05-4bed-97d2-4d62403028ce-2015-04-16 19:11:28Z-P" ], "x-ms-request-id": [ - "7b0b2be6e69bce7fa790135ee31d7dc8" + "fdd7355a3c3f3e73bdae862fd57d3e43" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:07:50 GMT" + "Thu, 16 Apr 2015 19:11:30 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -2216,6 +2010,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba" + "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524" } } \ No newline at end of file diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_DeleteAndDissociateTest.json b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_DeleteAndDissociateTest.json index 5eaede5d1d9e..bec286d0b61f 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_DeleteAndDissociateTest.json +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/E2E_DeleteAndDissociateTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16,34 +16,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "9a70757f6ca8c7c4acfedd3aad5189ff" + "72baf59cee7932f0b2ecf07ff54a70e6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:14:33 GMT" + "Thu, 16 Apr 2015 14:55:36 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -57,34 +57,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "2fa5494425ddcf7f81701efd94d99983" + "de09bd88631c38a29e73fed71ff2da59" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:14:35 GMT" + "Thu, 16 Apr 2015 14:55:37 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -98,34 +98,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "556d67d7ec4ac8b8b2de981a53b76c45" + "c8b65f5d82c23223905658427eff4bf8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:14:40 GMT" + "Thu, 16 Apr 2015 14:55:41 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -139,1588 +139,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "67157058d486c0fa98a02a8077f76d62" + "a8a5635118c93d3a8702588ebea09f7a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:14:43 GMT" + "Thu, 16 Apr 2015 14:55:44 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "8a640dbf7405c4e685da7d15243bc80f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:14:46 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "228af3737b10c409a294811f9dc2903d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:14:54 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "b528e467da35c953beaa8652da90ee0c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:02 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "59382b413e43c1c8a43a0c338809dcfc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:10 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "b08e17d1ca93c93a9dcce5272b5389ca" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:19 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "cc2925d570dac1a6ac0d17543416bb51" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:26 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "798a17cbbcc6c7fb801668905ed0838b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:34 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "d3bec877b341c26d86434d7c0c2eecef" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:42 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "2eb3b446489dc0329e61f7285a7b21ed" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:50 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "3101a057b25ec28093b9a1e5b53f58fb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:58 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "a1d471335b5bcf45ba06d35a7eaacba0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:16:06 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "fa0a64874af5c8a78b736611cf760488" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:16:13 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "db76b9f73405c0c3aef0b7ef0f697340" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:16:21 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "ce398f2370d1c0c8bfc985123fcb91f6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:16:28 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "c49ff4bbad2fc829abf87f54c0d881d2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:16:30 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/ProtectionContainers?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1Byb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "2f46f78f-8b00-404c-a3c4-8165b0cde7cb-2015-02-23 15:14:36Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n Primary\r\n \r\n \r\n 7580cb43-decf-4e66-aee3-40718d11fec8\r\n 7580cb43-decf-4e66-aee3-40718d11fec8\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>0</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n c58179df-ae75-4098-90e9-dcd8c7934784\r\n c58179df-ae75-4098-90e9-dcd8c7934784\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>300</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n Cloud_0_2bb286ca_78225OE72093\r\n Primary\r\n \r\n \r\n b6a2ef89-347c-48c5-b33b-5b8bd8ac8154\r\n b6a2ef89-347c-48c5-b33b-5b8bd8ac8154\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n Microsoft Azure\r\n PairingFailed\r\n \r\n \r\n true\r\n 0\r\n HyperVReplicaAzure\r\n <HyperVReplicaAzureProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ActiveStorageAccount>\r\n <StorageAccountName>hostersfcbvtvaulte423371</StorageAccountName>\r\n <SubscriptionId>e423371c-63cd-497e-b5b0-eb6d0b306d7e</SubscriptionId>\r\n </ActiveStorageAccount>\r\n <ApplicationConsistentSnapshotFrequencyInHours>0</ApplicationConsistentSnapshotFrequencyInHours>\r\n <EncryptionEnabled>false</EncryptionEnabled>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPointHistoryDuration>0</RecoveryPointHistoryDuration>\r\n <ReplicationInterval>300</ReplicationInterval>\r\n</HyperVReplicaAzureProtectionProfileDetails>\r\n \r\n \r\n 9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n cloudOn21\r\n Recovery\r\n \r\n 3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n VMM\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "6178" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "2f46f78f-8b00-404c-a3c4-8165b0cde7cb-2015-02-23 15:14:36Z-P" - ], - "x-ms-request-id": [ - "7c8fd1191a66c7ac83aac8f30c2f4cbc" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:14:39 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/ProtectionContainers/774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1Byb3RlY3Rpb25Db250YWluZXJzLzc3NDg1OWIwLTE5NjYtNDhjYy05ZGY3LTc1OWM0NDFiN2E4Y180OTRjMDk5My1jYzM1LTRkODQtYjM3My1iZjFhMjNiZTIxZDM/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "a9e6bf63-f1fb-4b33-a2db-3637bad89494-2015-02-23 15:14:41Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n Primary\r\n \r\n \r\n 7580cb43-decf-4e66-aee3-40718d11fec8\r\n 7580cb43-decf-4e66-aee3-40718d11fec8\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>0</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n c58179df-ae75-4098-90e9-dcd8c7934784\r\n c58179df-ae75-4098-90e9-dcd8c7934784\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>300</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n", - "ResponseHeaders": { - "Content-Length": [ - "3832" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "a9e6bf63-f1fb-4b33-a2db-3637bad89494-2015-02-23 15:14:41Z-P" - ], - "x-ms-request-id": [ - "f3cd7bc1d27ccb2aad9b4f169c7f91b6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:14:42 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/ProtectionContainers/dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1Byb3RlY3Rpb25Db250YWluZXJzL2RjMWVkOWIyLTdiOTAtNDUzNC05OTc3LTEyODgxZDI3OGZiNV8zYjUwMDVlNS0wYWVjLTQ1MWMtOWZiOC1iZGEwMmNiZjE1MTU/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "d4a6e035-4fc6-477e-b7f1-ca2cfe65a65e-2015-02-23 15:14:44Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n cloudOn21\r\n Recovery\r\n \r\n 3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n VMM\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n", - "ResponseHeaders": { - "Content-Length": [ - "470" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "d4a6e035-4fc6-477e-b7f1-ca2cfe65a65e-2015-02-23 15:14:44Z-P" - ], - "x-ms-request-id": [ - "e239887f3a52c4eb8a2271f6b5a1c693" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:14:44 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/ProtectionProfiles/7580cb43-decf-4e66-aee3-40718d11fec8/DissociateAndDelete?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1Byb3RlY3Rpb25Qcm9maWxlcy83NTgwY2I0My1kZWNmLTRlNjYtYWVlMy00MDcxOGQxMWZlYzgvRGlzc29jaWF0ZUFuZERlbGV0ZT9hcGktdmVyc2lvbj0yMDE1LTAyLTEw", - "RequestMethod": "POST", - "RequestBody": "\r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n", - "RequestHeaders": { - "Content-Type": [ - "application/xml" - ], - "Content-Length": [ - "401" - ], - "Accept": [ - "application/xml" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1424700887000)\\/\",\"NotAfterTimestamp\":\"\\/Date(1424722487000)\\/\",\"ClientRequestId\":\"647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5n7FfsSRpmHt6/jqAQxXQLtsDBLQFF9YmYv2IwDAGkI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" - ], - "x-ms-client-request-id": [ - "647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "629" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P" - ], - "x-ms-request-id": [ - "fd1293751fb4cf7ab3b7fec1bc8f1333" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:14:48 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "c3f656e5-0f4d-4bca-82ac-131899dbbd76-2015-02-23 15:14:55Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:14:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.7025885Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "14283" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "c3f656e5-0f4d-4bca-82ac-131899dbbd76-2015-02-23 15:14:55Z-P" - ], - "x-ms-request-id": [ - "ab0d35533f5ac5fe84e539c6129385b2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:14:56 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "de58f35f-f240-4561-85e6-d7b66e886afa-2015-02-23 15:15:03Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:14:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.7025885Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "14283" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "de58f35f-f240-4561-85e6-d7b66e886afa-2015-02-23 15:15:03Z-P" - ], - "x-ms-request-id": [ - "697130b507d3c12d81ede9e5987a4100" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:03 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "7e509b57-d85d-47c4-bcb0-246e4f9f9a44-2015-02-23 15:15:10Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:14:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.7025885Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "14283" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "7e509b57-d85d-47c4-bcb0-246e4f9f9a44-2015-02-23 15:15:10Z-P" - ], - "x-ms-request-id": [ - "e1babdc7a595c7ac998366b2e1ce05e2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:12 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "58078d79-30c8-43b2-878b-5d97956f8267-2015-02-23 15:15:20Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:18Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.7025885Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "14315" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "58078d79-30c8-43b2-878b-5d97956f8267-2015-02-23 15:15:20Z-P" - ], - "x-ms-request-id": [ - "43d2c9c4df6ecfbcae6081996bc4b04c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:21 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "26353524-4bc4-446d-a6aa-22c44abfffc9-2015-02-23 15:15:27Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:27Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.7025885Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "14320" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "26353524-4bc4-446d-a6aa-22c44abfffc9-2015-02-23 15:15:27Z-P" - ], - "x-ms-request-id": [ - "c15df717df5cc0838df828433d143390" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:28 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "e69c5d08-751b-4c5d-9b80-762a74dd08a2-2015-02-23 15:15:35Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:27Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:30Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "14346" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "e69c5d08-751b-4c5d-9b80-762a74dd08a2-2015-02-23 15:15:35Z-P" - ], - "x-ms-request-id": [ - "de966d49efb2c822b1c66a3d5bb905cd" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:36 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "7ddb1fe7-8f01-4187-85d2-7ebcc13d26d5-2015-02-23 15:15:43Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:43Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:30Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "14346" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "7ddb1fe7-8f01-4187-85d2-7ebcc13d26d5-2015-02-23 15:15:43Z-P" - ], - "x-ms-request-id": [ - "80a19cee31d0cd2fab71304d47aee392" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:44 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "269417c2-dba5-43a5-af52-c13d9841774a-2015-02-23 15:15:51Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:45Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:45.5924195Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:45.6705511Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>0001-01-01T00:00:00</d2p1:StartTime>\r\n <d2p1:State>NotStarted</d2p1:State>\r\n <d2p1:StateDescription>NotStarted</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "14362" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "269417c2-dba5-43a5-af52-c13d9841774a-2015-02-23 15:15:51Z-P" - ], - "x-ms-request-id": [ - "0d40e74543d4c816b373af57414d059f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:51 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "c4473072-b870-455a-9c6e-78d468b38533-2015-02-23 15:15:59Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:54Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:45.5924195Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:53.9829602Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:45.6705511Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>0001-01-01T00:00:00</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:54.0454776Z</d2p1:StartTime>\r\n <d2p1:State>InProgress</d2p1:State>\r\n <d2p1:StateDescription>InProgress</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n InProgress\r\n InProgress\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "14378" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "c4473072-b870-455a-9c6e-78d468b38533-2015-02-23 15:15:59Z-P" - ], - "x-ms-request-id": [ - "e1d5925f987ec478822220486c7f7a6e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:15:59 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "ad2d2eb2-930d-4d6a-87be-9ff56ed8c366-2015-02-23 15:16:06Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:16:02Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:45.5924195Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:53.9829602Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:45.6705511Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:16:02.3054246Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:54.0454776Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "14383" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "ad2d2eb2-930d-4d6a-87be-9ff56ed8c366-2015-02-23 15:16:06Z-P" - ], - "x-ms-request-id": [ - "4350ad4bd5aec77e93a90a9a7e82084f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:16:06 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "c23bc00f-2e0a-4e33-9242-2eef7c672804-2015-02-23 15:16:14Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:16:02Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:45.5924195Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:53.9829602Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:45.6705511Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:16:02.3054246Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:54.0454776Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "14383" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "c23bc00f-2e0a-4e33-9242-2eef7c672804-2015-02-23 15:16:14Z-P" - ], - "x-ms-request-id": [ - "d8b8ebd87255c596831a26f661bb9fb6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:16:14 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/ProtectionContainers?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1Byb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1728,7 +174,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "f276dbc7-c853-4ba2-be35-fa3cae57edf4-2015-02-23 15:16:21Z-P" + "b1c36e18-88fc-436a-ab10-fcc5ecdb3e03-2015-04-16 14:55:37Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1737,10 +183,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n \r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n InProgress\r\n InProgress\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:16:15Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:45.5924195Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:53.9829602Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:45.6705511Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:16:02.3054246Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:54.0454776Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n Primary\r\n \r\n \r\n 05697a75-32fb-46cf-828c-988ea9953a20\r\n 05697a75-32fb-46cf-828c-988ea9953a20\r\n \r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>300</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n 4fc8d7fe-8a0c-4bf2-9a86-444d1c3d63d9\r\n 4fc8d7fe-8a0c-4bf2-9a86-444d1c3d63d9\r\n \r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>0</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n VMM\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n phase2PrimaryCloud\r\n Recovery\r\n \r\n 7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n VMM\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "14383" + "4276" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1755,20 +201,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "f276dbc7-c853-4ba2-be35-fa3cae57edf4-2015-02-23 15:16:21Z-P" + "b1c36e18-88fc-436a-ab10-fcc5ecdb3e03-2015-04-16 14:55:37Z-P" ], "x-ms-request-id": [ - "342e7c149ddfce348a5b1aa895af40a8" + "7325b66ba1a436fdab7ce52edb4950c2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:16:22 GMT" + "Thu, 16 Apr 2015 14:55:40 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1781,8 +227,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/ProtectionContainers/4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1Byb3RlY3Rpb25Db250YWluZXJzLzRjODNlMDM4LTdhYmQtNDI4Yi05MTM4LTgxMDY1ZTJiYjU1OV81ODEwMjU3ZS0wOTk0LTRlZDMtYTZhMC1kOTI3MTUzNWUwMTY/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1790,7 +236,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "e73006d8-7ca2-4f0e-948d-3e3b3962e8fd-2015-02-23 15:16:29Z-P" + "5b115ba4-c12d-4e60-b33e-0784a45bd1bb-2015-04-16 14:55:41Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1799,10 +245,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n 2/23/2015 3:16:26 PM\r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n Succeeded\r\n Completed\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:16:25Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:45.5924195Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:53.9829602Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:45.6705511Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:16:02.3054246Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:54.0454776Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n Primary\r\n \r\n \r\n 05697a75-32fb-46cf-828c-988ea9953a20\r\n 05697a75-32fb-46cf-828c-988ea9953a20\r\n \r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>300</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n 4fc8d7fe-8a0c-4bf2-9a86-444d1c3d63d9\r\n 4fc8d7fe-8a0c-4bf2-9a86-444d1c3d63d9\r\n \r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n Paired\r\n \r\n \r\n true\r\n 0\r\n HyperVReplica\r\n <HyperVReplicaProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <AllowedAuthenticationType>1</AllowedAuthenticationType>\r\n <ApplicationConsistentSnapshotFrequencyInHours>1</ApplicationConsistentSnapshotFrequencyInHours>\r\n <CompressionEnabled>true</CompressionEnabled>\r\n <OfflineReplicationExportPath />\r\n <OfflineReplicationImportPath />\r\n <OnlineReplicationMethod>true</OnlineReplicationMethod>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPoints>1</RecoveryPoints>\r\n <ReplicaDeletionOption>SecondaryVMOnRecoveryCloud</ReplicaDeletionOption>\r\n <ReplicationPort>8083</ReplicationPort>\r\n <ReplicationFrequencyInSeconds>0</ReplicationFrequencyInSeconds>\r\n</HyperVReplicaProtectionProfileDetails>\r\n \r\n \r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n VMM\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n", "ResponseHeaders": { "Content-Length": [ - "14397" + "3842" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1817,20 +263,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "e73006d8-7ca2-4f0e-948d-3e3b3962e8fd-2015-02-23 15:16:29Z-P" + "5b115ba4-c12d-4e60-b33e-0784a45bd1bb-2015-04-16 14:55:41Z-P" ], "x-ms-request-id": [ - "b7dff51592d7c6f68f4ee167dec8a209" + "fee54c1174393911970def31900efbd2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:16:30 GMT" + "Thu, 16 Apr 2015 14:55:42 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1843,8 +289,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/6b58b2c4-0969-48ff-800b-6f44480b2852?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvNmI1OGIyYzQtMDk2OS00OGZmLTgwMGItNmY0NDQ4MGIyODUyP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/ProtectionContainers/8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1Byb3RlY3Rpb25Db250YWluZXJzLzhlYzY0ZTc5LWZiOTctNDgzNy1hNmIxLTE5NjhmM2ZjYzYzZl83YTlhOTBmNy0zYzdlLTRmZmMtODgyNS05M2RkOTJiMjA1YmU/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1852,7 +298,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "8b4d2c19-3e32-4ddf-aa45-1f7dccf96ee7-2015-02-23 15:16:31Z-P" + "240411f7-6c19-451e-8f56-90bb2d461a56-2015-04-16 14:55:44Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1861,10 +307,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n 6b58b2c4-0969-48ff-800b-6f44480b2852\r\n 647b6334-ab3e-4ebb-bd71-7df83dd85df2-2015-02-23 15:14:47Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove protection\r\n 2/23/2015 3:16:26 PM\r\n \r\n CloudUnPairing\r\n 2/23/2015 3:14:48 PM\r\n Succeeded\r\n Completed\r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n ProtectionContainer\r\n \r\n \r\n 6c11a271-07bc-4ec4-bf1b-82b2189f980f\r\n Removing the configuration for Windows Server 2012 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:15:50Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>a9e7e635-7609-4375-9b3d-0c9ff8ab584a</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:14:50.8563334Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.6473436Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>ecd0eefd-de10-4a13-b0a3-9cff782966ef</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:13.3684848Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:14:50.9344379Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>d0095db4-38e1-41a0-a50e-73c45beb115d</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:18.6309715Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:13.4484212Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>67b85855-70bf-430e-9a4d-87a99ed3315d</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:28.0373616Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:18.7090851Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>82d5b08c-688f-4bde-b8bb-0a63a830e111</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9213442Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n 9208701f-5eaa-45c9-ad8a-0d8d097264ef\r\n Removing the configuration for Windows Server 2012 R2 Hyper-V hosts\r\n \r\n \r\n 2015-02-23T15:16:25Z\r\n <InlineWorkflowTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\">\r\n <d2p1:Task>\r\n <d2p1:ID>9ce03124-ffe2-4be9-bc6c-fccfb6b26ab8</d2p1:ID>\r\n <d2p1:Name>Prerequisites check for deleting the protection group</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:30.2237425Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.0831022Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>5c39b694-741c-49b7-b858-34b8734321f4</d2p1:ID>\r\n <d2p1:Name>Remove the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:45.5924195Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:30.3018489Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>1593bf26-aedf-4dd1-ad91-610f57ef4d7c</d2p1:ID>\r\n <d2p1:Name>Clean up the protection configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:15:53.9829602Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:45.6705511Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n <d2p1:Task>\r\n <d2p1:ID>f76954dd-eddb-4fb9-9181-d08d6fe1b9ae</d2p1:ID>\r\n <d2p1:Name>Clean up the configuration</d2p1:Name>\r\n <d2p1:Actions xmlns:d4p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" />\r\n <d2p1:ChildJobId i:nil=\"true\" />\r\n <d2p1:EndTime>2015-02-23T15:16:02.3054246Z</d2p1:EndTime>\r\n <d2p1:ExtendedDetails>&lt;Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\"&gt;\r\n &lt;ID i:nil=\"true\" /&gt;\r\n &lt;Name i:nil=\"true\" /&gt;\r\n &lt;Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" /&gt;\r\n &lt;ChildJobId i:nil=\"true\" /&gt;\r\n &lt;EndTime&gt;0001-01-01T00:00:00&lt;/EndTime&gt;\r\n &lt;ExtendedDetails i:nil=\"true\" /&gt;\r\n &lt;StartTime&gt;0001-01-01T00:00:00&lt;/StartTime&gt;\r\n &lt;State i:nil=\"true\" /&gt;\r\n &lt;StateDescription i:nil=\"true\" /&gt;\r\n &lt;TaskType i:nil=\"true\" /&gt;\r\n&lt;/Task&gt;</d2p1:ExtendedDetails>\r\n <d2p1:StartTime>2015-02-23T15:15:54.0454776Z</d2p1:StartTime>\r\n <d2p1:State>Succeeded</d2p1:State>\r\n <d2p1:StateDescription>Completed</d2p1:StateDescription>\r\n <d2p1:TaskType>TaskDetails</d2p1:TaskType>\r\n </d2p1:Task>\r\n </ChildTasks>\r\n <WorkflowIds xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\">\r\n <d2p1:string>2851344e-fba4-4b9b-a865-a7a3c0b1ebb6</d2p1:string>\r\n </WorkflowIds>\r\n</InlineWorkflowTaskDetails>\r\n 2015-02-23T15:14:49.9525881Z\r\n Succeeded\r\n Completed\r\n InlineWorkflowTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n phase2PrimaryCloud\r\n Recovery\r\n \r\n 7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n VMM\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n", "ResponseHeaders": { "Content-Length": [ - "14397" + "479" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1879,20 +325,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "8b4d2c19-3e32-4ddf-aa45-1f7dccf96ee7-2015-02-23 15:16:31Z-P" + "240411f7-6c19-451e-8f56-90bb2d461a56-2015-04-16 14:55:44Z-P" ], "x-ms-request-id": [ - "8de72ecd4f05c2139850eef7ed914e73" + "484474bb0e953ef78ae28652f69f02c6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:16:32 GMT" + "Thu, 16 Apr 2015 14:55:45 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1907,6 +353,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba" + "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524" } } \ No newline at end of file diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/EnumerationTests.json b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/EnumerationTests.json index 0bca95e6abff..6a78ce8abceb 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/EnumerationTests.json +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/EnumerationTests.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16,34 +16,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "1d1019c17253c99f930f98a5ebdee220" + "f0bf18f109c832f7b84a60431174cc92" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 14:59:34 GMT" + "Thu, 16 Apr 2015 14:35:10 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -57,34 +57,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "f3673093ad3ccd0da603fb74e93cddfc" + "247034f5a4b337a1b18e62b99e25979f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 14:59:37 GMT" + "Thu, 16 Apr 2015 14:35:12 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -98,34 +98,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "f0d5b33b4d2ec0d5961df25336e4626c" + "be8bb5992b59352c8cb7ddc164cd0d0a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 14:59:41 GMT" + "Thu, 16 Apr 2015 14:35:16 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Servers?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Servers?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -133,7 +133,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "b4c71df3-4bbb-4c8a-be79-cf1d1988f4fa-2015-02-23 14:59:38Z-P" + "0a4a9a09-9d9d-4144-bb86-4ce7a4614009-2015-04-16 14:35:12Z-P" ], "x-ms-version": [ "2013-03-01" @@ -142,7 +142,7 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T14:58:32.3262491Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n HRM-04-021.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T14:58:58.4089848Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n VMM\r\n \r\n", + "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n HRM-04-020.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:35:13.6360895Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:35:09.4818862Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n VMM\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "929" @@ -160,20 +160,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "b4c71df3-4bbb-4c8a-be79-cf1d1988f4fa-2015-02-23 14:59:38Z-P" + "0a4a9a09-9d9d-4144-bb86-4ce7a4614009-2015-04-16 14:35:12Z-P" ], "x-ms-request-id": [ - "2665cd63b6efcd65b081c6afa7fe2297" + "0632695554a937fa912537ceadc929f6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 14:59:41 GMT" + "Thu, 16 Apr 2015 14:35:14 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -186,8 +186,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/ProtectionContainers?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1Byb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/ProtectionContainers?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1Byb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -195,7 +195,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "214e92eb-c0db-43a9-8a68-fe70cac119f6-2015-02-23 14:59:43Z-P" + "90e5ca16-1ef7-4ef3-b9bd-f63de7aff664-2015-04-16 14:35:16Z-P" ], "x-ms-version": [ "2013-03-01" @@ -204,10 +204,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_494c0993-cc35-4d84-b373-bf1a23be21d3\r\n cloudOn19\r\n \r\n \r\n 494c0993-cc35-4d84-b373-bf1a23be21d3\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n Cloud_0_2bb286ca_78225OE72093\r\n Primary\r\n \r\n \r\n b6a2ef89-347c-48c5-b33b-5b8bd8ac8154\r\n b6a2ef89-347c-48c5-b33b-5b8bd8ac8154\r\n \r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c_9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n Microsoft Azure\r\n PairingFailed\r\n \r\n \r\n true\r\n 0\r\n HyperVReplicaAzure\r\n <HyperVReplicaAzureProtectionProfileDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ActiveStorageAccount>\r\n <StorageAccountName>hostersfcbvtvaulte423371</StorageAccountName>\r\n <SubscriptionId>e423371c-63cd-497e-b5b0-eb6d0b306d7e</SubscriptionId>\r\n </ActiveStorageAccount>\r\n <ApplicationConsistentSnapshotFrequencyInHours>0</ApplicationConsistentSnapshotFrequencyInHours>\r\n <EncryptionEnabled>false</EncryptionEnabled>\r\n <OnlineReplicationStartTime i:nil=\"true\" />\r\n <RecoveryPointHistoryDuration>0</RecoveryPointHistoryDuration>\r\n <ReplicationInterval>300</ReplicationInterval>\r\n</HyperVReplicaAzureProtectionProfileDetails>\r\n \r\n \r\n 9055598c-844b-4943-9f39-7e62bdd2cbcc\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5_3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n cloudOn21\r\n \r\n \r\n 3b5005e5-0aec-451c-9fb8-bda02cbf1515\r\n VMM\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n \r\n", + "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559_5810257e-0994-4ed3-a6a0-d9271535e016\r\n phase2RecoveryCloud\r\n \r\n \r\n 5810257e-0994-4ed3-a6a0-d9271535e016\r\n VMM\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f_7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n phase2PrimaryCloud\r\n \r\n \r\n 7a9a90f7-3c7e-4ffc-8825-93dd92b205be\r\n VMM\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "2814" + "912" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -222,20 +222,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "214e92eb-c0db-43a9-8a68-fe70cac119f6-2015-02-23 14:59:43Z-P" + "90e5ca16-1ef7-4ef3-b9bd-f63de7aff664-2015-04-16 14:35:16Z-P" ], "x-ms-request-id": [ - "8361915f4af8c08e9c21787ec37db8e3" + "85589337eae332baa93f28608d8cbcc5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 14:59:44 GMT" + "Thu, 16 Apr 2015 14:35:17 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -250,6 +250,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba" + "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524" } } \ No newline at end of file diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkMappingTest.json b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkMappingTest.json index 2b91f0dd2fe7..fd84bf58c878 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkMappingTest.json +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkMappingTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16,34 +16,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "bed1e29f43efc01e902e597a5ed76b44" + "99fd12a291e1325284f730819654b49e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:02:52 GMT" + "Thu, 16 Apr 2015 14:40:02 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -57,34 +57,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "eefa17d596f5c249824c3b48b0bd1829" + "96130731d9a73f0c96162af428a62f99" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:02:53 GMT" + "Thu, 16 Apr 2015 14:40:03 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -98,34 +98,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "e8c485a901d7c516b6d618b6d3bcaac9" + "e8f05977312b3228bff4807874582865" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:02:58 GMT" + "Thu, 16 Apr 2015 14:40:07 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -139,34 +139,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "979023e66a16c6d7ad0906fb836187ef" + "4dd5815e2eb73c86ba5e7e68698abe61" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:03:00 GMT" + "Thu, 16 Apr 2015 14:40:08 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -180,34 +180,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "2a830a0dfe41cc1bacd10c89ca20e54e" + "1fe4b4c4506031cea124a9a8157db0de" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:03:03 GMT" + "Thu, 16 Apr 2015 14:40:11 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -221,34 +221,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "0aace19fe72dcf9ab5f724dc8ae7a31c" + "6437176130a733ddb687ccd5daaff64b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:03:11 GMT" + "Thu, 16 Apr 2015 14:40:14 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -262,34 +262,75 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "1790896318bcc93e911c4d3b6121475c" + "8325c9339c853631b0d3c9250d9cd5cd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:03:14 GMT" + "Thu, 16 Apr 2015 14:40:22 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Servers?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/xml" + ], + "x-ms-version": [ + "2013-03-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "1115" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "x-ms-request-id": [ + "6b2918f589983dda98f592ca2e125a40" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Apr 2015 14:40:25 GMT" + ], + "Server": [ + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", + "Microsoft-HTTPAPI/2.0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Servers?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -297,7 +338,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "885c7b27-553b-4d06-ad76-8954543fd419-2015-02-23 15:02:55Z-P" + "71b58f6e-81b5-4d89-bf03-f7d3216a70bd-2015-04-16 14:40:02Z-P" ], "x-ms-version": [ "2013-03-01" @@ -306,7 +347,7 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T15:01:32.4456534Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n HRM-04-021.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T15:01:57.8805747Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n VMM\r\n \r\n", + "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n HRM-04-020.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:40:03.9673752Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:39:59.8229846Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n VMM\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "929" @@ -324,20 +365,82 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "885c7b27-553b-4d06-ad76-8954543fd419-2015-02-23 15:02:55Z-P" + "71b58f6e-81b5-4d89-bf03-f7d3216a70bd-2015-04-16 14:40:02Z-P" + ], + "x-ms-request-id": [ + "7998e32524853d008e3a9ad478be0302" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 16 Apr 2015 14:40:04 GMT" + ], + "Server": [ + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", + "Microsoft-HTTPAPI/2.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Networks?api-version=2015-04-10&ServerId=4c83e038-7abd-428b-9138-81065e2bb559", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTAmU2VydmVySWQ9NGM4M2UwMzgtN2FiZC00MjhiLTkxMzgtODEwNjVlMmJiNTU5", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Accept": [ + "application/xml" + ], + "x-ms-client-request-id": [ + "51a19260-fc32-47c8-9303-48a709b5dade-2015-04-16 14:40:06Z-P" + ], + "x-ms-version": [ + "2013-03-01" + ], + "User-Agent": [ + "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" + ] + }, + "ResponseBody": "\r\n \r\n d588e46b-1265-4053-9e20-4fc7daed20a5\r\n phase2RecoveryVMNetwork\r\n d588e46b-1265-4053-9e20-4fc7daed20a5\r\n VMM\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n NoIsolation\r\n \r\n \r\n", + "ResponseHeaders": { + "Content-Length": [ + "448" + ], + "Content-Type": [ + "application/xml; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" + ], + "x-ms-client-request-id": [ + "51a19260-fc32-47c8-9303-48a709b5dade-2015-04-16 14:40:06Z-P" ], "x-ms-request-id": [ - "7f3807286690c37fa2a131ac652d02c5" + "ad82b2dc8313379cabb18a596577aef2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:02:57 GMT" + "Thu, 16 Apr 2015 14:40:07 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -350,8 +453,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Networks?api-version=2015-02-10&ServerId=774859b0-1966-48cc-9df7-759c441b7a8c", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L05ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTAmU2VydmVySWQ9Nzc0ODU5YjAtMTk2Ni00OGNjLTlkZjctNzU5YzQ0MWI3YThj", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Networks?api-version=2015-04-10&ServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTAmU2VydmVySWQ9OGVjNjRlNzktZmI5Ny00ODM3LWE2YjEtMTk2OGYzZmNjNjNm", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -359,7 +462,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "34558b4f-f3b1-407b-a0d1-9ba92ba53246-2015-02-23 15:02:59Z-P" + "0a9ce194-f3df-4818-904a-f452c14fc258-2015-04-16 14:40:08Z-P" ], "x-ms-version": [ "2013-03-01" @@ -368,10 +471,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n NoIsolation\r\n \r\n \r\n \r\n b6177888-5bf1-4f3e-bf5d-84402e0e0229\r\n phase2RecoveryVMNetwork\r\n b6177888-5bf1-4f3e-bf5d-84402e0e0229\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n NoIsolation\r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n cf556a92-6c0b-4d90-8e3e-167a481d4199\r\n phase2PrimaryVMNetwork\r\n cf556a92-6c0b-4d90-8e3e-167a481d4199\r\n VMM\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n NoIsolation\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "760" + "447" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -386,20 +489,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "34558b4f-f3b1-407b-a0d1-9ba92ba53246-2015-02-23 15:02:59Z-P" + "0a9ce194-f3df-4818-904a-f452c14fc258-2015-04-16 14:40:08Z-P" ], "x-ms-request-id": [ - "78a1d5fca77ac9b6b79887afd3cec23f" + "2faa8b31f7393ae1a4b2417203af5c25" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:03:00 GMT" + "Thu, 16 Apr 2015 14:40:09 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -412,8 +515,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/NetworkMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/NetworkMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -421,7 +524,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "420f6719-76ea-46a9-be0b-3fce956c0062-2015-02-23 15:03:02Z-P" + "2020051a-4471-4afe-be5b-a1001ffa5a0e-2015-04-16 14:40:11Z-P" ], "x-ms-version": [ "2013-03-01" @@ -448,20 +551,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "420f6719-76ea-46a9-be0b-3fce956c0062-2015-02-23 15:03:02Z-P" + "2020051a-4471-4afe-be5b-a1001ffa5a0e-2015-04-16 14:40:11Z-P" ], "x-ms-request-id": [ - "0206442e7db3c1c9a09dc9838ead65b7" + "0c3ec300a36934d4b61c6b4f223d3256" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:03:01 GMT" + "Thu, 16 Apr 2015 14:40:12 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -474,8 +577,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/NetworkMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/NetworkMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -483,7 +586,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "7c3767c4-389d-4e2f-b7f0-1e2697fbd1dd-2015-02-23 15:03:15Z-P" + "6da6bf80-992a-4204-8add-0161f45d628b-2015-04-16 14:40:24Z-P" ], "x-ms-version": [ "2013-03-01" @@ -492,7 +595,7 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n OK\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n b6177888-5bf1-4f3e-bf5d-84402e0e0229\r\n phase2RecoveryVMNetwork\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n \r\n", + "ResponseBody": "\r\n \r\n OK\r\n d588e46b-1265-4053-9e20-4fc7daed20a5\r\n phase2RecoveryVMNetwork\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n cf556a92-6c0b-4d90-8e3e-167a481d4199\r\n phase2PrimaryVMNetwork\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "636" @@ -510,20 +613,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "7c3767c4-389d-4e2f-b7f0-1e2697fbd1dd-2015-02-23 15:03:15Z-P" + "6da6bf80-992a-4204-8add-0161f45d628b-2015-04-16 14:40:24Z-P" ], "x-ms-request-id": [ - "e142680245e9c639b0b79e3fcd31ead6" + "2e78071eb49a355db66bb891ade11784" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:03:15 GMT" + "Thu, 16 Apr 2015 14:40:25 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -536,10 +639,10 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/NetworkMappings?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEw", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/NetworkMappings?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEw", "RequestMethod": "POST", - "RequestBody": "\r\n SCVMM\r\n <CreateNetworkMappingInput xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <PrimaryServerId>774859b0-1966-48cc-9df7-759c441b7a8c</PrimaryServerId>\r\n <PrimaryNetworkId>037a6701-37be-406a-ace7-d6e80aaaf1f4</PrimaryNetworkId>\r\n <RecoveryServerId>774859b0-1966-48cc-9df7-759c441b7a8c</RecoveryServerId>\r\n <RecoveryNetworkId>b6177888-5bf1-4f3e-bf5d-84402e0e0229</RecoveryNetworkId>\r\n</CreateNetworkMappingInput>\r\n", + "RequestBody": "\r\n SCVMM\r\n <CreateNetworkMappingInput xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <PrimaryServerId>4c83e038-7abd-428b-9138-81065e2bb559</PrimaryServerId>\r\n <PrimaryNetworkId>d588e46b-1265-4053-9e20-4fc7daed20a5</PrimaryNetworkId>\r\n <RecoveryServerId>8ec64e79-fb97-4837-a6b1-1968f3fcc63f</RecoveryServerId>\r\n <RecoveryNetworkId>cf556a92-6c0b-4d90-8e3e-167a481d4199</RecoveryNetworkId>\r\n</CreateNetworkMappingInput>\r\n", "RequestHeaders": { "Content-Type": [ "application/xml" @@ -551,10 +654,10 @@ "application/xml" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1424700184592)\\/\",\"NotAfterTimestamp\":\"\\/Date(1424721784592)\\/\",\"ClientRequestId\":\"4c5f59ab-3b97-4bb2-af68-002410f649f1-2015-02-23 15:03:04Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CjNTqDUVz+Y5/s3AH0Cfms7pORkhikfiKIPUk00jsdk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1429191613652)\\/\",\"NotAfterTimestamp\":\"\\/Date(1429796413652)\\/\",\"ClientRequestId\":\"48cf9c11-1e50-4840-a855-05f50f86ddee-2015-04-16 14:40:13Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wRtKx/fr+2pLbXK+bzq4TXE3VGr/k35iSnDkD5JZf+0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "x-ms-client-request-id": [ - "4c5f59ab-3b97-4bb2-af68-002410f649f1-2015-02-23 15:03:04Z-P" + "48cf9c11-1e50-4840-a855-05f50f86ddee-2015-04-16 14:40:13Z-P" ], "x-ms-version": [ "2013-03-01" @@ -563,7 +666,7 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n 14a3e70b-c738-4f35-98b5-b918205a250d\r\n 4c5f59ab-3b97-4bb2-af68-002410f649f1-2015-02-23 15:03:04Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n", + "ResponseBody": "\r\n 86bf359e-9b1e-44f8-b3c8-1909a5e9d370\r\n 48cf9c11-1e50-4840-a855-05f50f86ddee-2015-04-16 14:40:13Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "629" @@ -581,20 +684,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "4c5f59ab-3b97-4bb2-af68-002410f649f1-2015-02-23 15:03:04Z-P" + "48cf9c11-1e50-4840-a855-05f50f86ddee-2015-04-16 14:40:13Z-P" ], "x-ms-request-id": [ - "10fa70dd4b69c93ebd6f4aa768511e94" + "ce4e6cabeb2132928ac07cc4a06315e2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:03:05 GMT" + "Thu, 16 Apr 2015 14:40:14 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -607,8 +710,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/14a3e70b-c738-4f35-98b5-b918205a250d?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvMTRhM2U3MGItYzczOC00ZjM1LTk4YjUtYjkxODIwNWEyNTBkP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/86bf359e-9b1e-44f8-b3c8-1909a5e9d370?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvODZiZjM1OWUtOWIxZS00NGY4LWIzYzgtMTkwOWE1ZTlkMzcwP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -616,7 +719,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "ed91ac3a-49a6-4df4-9801-d90c607b39d1-2015-02-23 15:03:12Z-P" + "65ba0ba9-2991-4d58-83c7-d60d1019db91-2015-04-16 14:40:21Z-P" ], "x-ms-version": [ "2013-03-01" @@ -625,10 +728,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n 14a3e70b-c738-4f35-98b5-b918205a250d\r\n 4c5f59ab-3b97-4bb2-af68-002410f649f1-2015-02-23 15:03:04Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Map\r\n 2/23/2015 3:03:09 PM\r\n \r\n NetworkPairing\r\n 2/23/2015 3:03:06 PM\r\n Succeeded\r\n Completed\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n Network\r\n \r\n \r\n 1847303e-4ef4-4a43-9c77-5e5edb69bcb1\r\n Map network\r\n \r\n \r\n 2015-02-23T15:03:08.5347986Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:03:06.4119513Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n 231483a2-a9e0-45c8-9ae9-8cf328853c61\r\n Attach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n Succeeded\r\n Skipped\r\n GroupTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 86bf359e-9b1e-44f8-b3c8-1909a5e9d370\r\n 48cf9c11-1e50-4840-a855-05f50f86ddee-2015-04-16 14:40:13Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Map\r\n 2015-04-16T14:40:16Z\r\n \r\n NetworkPairing\r\n 2015-04-16T14:40:14.372067Z\r\n Succeeded\r\n Completed\r\n d588e46b-1265-4053-9e20-4fc7daed20a5\r\n phase2RecoveryVMNetwork\r\n Network\r\n \r\n \r\n 6e7490ab-fa7d-4969-9432-f80b7e5798a3\r\n Map network\r\n \r\n \r\n 2015-04-16T14:40:16.2238627Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-04-16T14:40:14.9567144Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n 9a6f9de4-d927-4105-ac9e-42393be47ae4\r\n Attach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n Succeeded\r\n Skipped\r\n GroupTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "2511" + "2519" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -643,20 +746,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "ed91ac3a-49a6-4df4-9801-d90c607b39d1-2015-02-23 15:03:12Z-P" + "65ba0ba9-2991-4d58-83c7-d60d1019db91-2015-04-16 14:40:21Z-P" ], "x-ms-request-id": [ - "c49157b86ec5c242ad05513294bbfed8" + "4082b0c10f6b3923b45459e535a1f365" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:03:13 GMT" + "Thu, 16 Apr 2015 14:40:23 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -671,6 +774,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba" + "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524" } } \ No newline at end of file diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkUnMappingTest.json b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkUnMappingTest.json index 2c7b940b79f8..00619a463815 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkUnMappingTest.json +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/NetworkUnMappingTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16,34 +16,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "5950981ace69c748af318ac21ad99576" + "4598e16b288833298c924617e120898f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:03:51 GMT" + "Thu, 16 Apr 2015 14:41:59 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -57,34 +57,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "32e2eb0a6261c5e8bf8f5e3d5e075a86" + "11752a86440e3a4a8b43e29c752efe48" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:03:52 GMT" + "Thu, 16 Apr 2015 14:42:01 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -98,34 +98,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "b1c3994fb8ccc815bf210fe7a7e6a06e" + "1f8803afa84738ff9aab6e899dc1a593" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:03:57 GMT" + "Thu, 16 Apr 2015 14:42:04 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -139,34 +139,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "3a70e36e9385c4a6b182204bb4ca100e" + "897cf97a664f3377978d9f3f66aa71f2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:04:01 GMT" + "Thu, 16 Apr 2015 14:42:06 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -180,34 +180,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "2732a269a526c7f086fe311aec2a9157" + "4495d97508b0393f80559e57c717cc5a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:04:10 GMT" + "Thu, 16 Apr 2015 14:42:14 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -221,198 +221,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "07f14804b9bbcece9c3c034e6963a804" + "01c352f09d6f3209b95b62d574f3d1b3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:04:18 GMT" + "Thu, 16 Apr 2015 14:42:17 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "c2773b21088bcf20ac239a99652d233a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:04:25 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "9ad88b5bd666c2fa873b98f2254d62ec" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:04:33 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "b1cf945e7caac481acd33ca0d0624072" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:04:42 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "2862144e5703c9059cac3c4455dcaf93" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:04:45 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Servers?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Servers?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -420,7 +256,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "a8683284-7e0f-48fa-912c-e62bbe7142fa-2015-02-23 15:03:54Z-P" + "a0ddaee5-e370-4062-a322-ebd57b2d9179-2015-04-16 14:42:00Z-P" ], "x-ms-version": [ "2013-03-01" @@ -429,7 +265,7 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T15:03:02.4535127Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n HRM-04-021.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T15:03:27.8919357Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n VMM\r\n \r\n", + "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n HRM-04-020.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:41:59.1333621Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:41:59.9891537Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n VMM\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "929" @@ -447,20 +283,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "a8683284-7e0f-48fa-912c-e62bbe7142fa-2015-02-23 15:03:54Z-P" + "a0ddaee5-e370-4062-a322-ebd57b2d9179-2015-04-16 14:42:00Z-P" ], "x-ms-request-id": [ - "857029ecfd32c588839592b685b5c581" + "b3815e8572ca3f70bacb091c311c5fcf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:03:56 GMT" + "Thu, 16 Apr 2015 14:42:02 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -473,8 +309,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/NetworkMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/NetworkMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -482,7 +318,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "ce1bbe29-f099-4f69-b654-3459f0fd8400-2015-02-23 15:03:59Z-P" + "c69ca432-8ea8-41ee-ba4d-0296d65c6442-2015-04-16 14:42:04Z-P" ], "x-ms-version": [ "2013-03-01" @@ -491,7 +327,7 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n OK\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n b6177888-5bf1-4f3e-bf5d-84402e0e0229\r\n phase2RecoveryVMNetwork\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n \r\n", + "ResponseBody": "\r\n \r\n OK\r\n d588e46b-1265-4053-9e20-4fc7daed20a5\r\n phase2RecoveryVMNetwork\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n cf556a92-6c0b-4d90-8e3e-167a481d4199\r\n phase2PrimaryVMNetwork\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "636" @@ -509,20 +345,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "ce1bbe29-f099-4f69-b654-3459f0fd8400-2015-02-23 15:03:59Z-P" + "c69ca432-8ea8-41ee-ba4d-0296d65c6442-2015-04-16 14:42:04Z-P" ], "x-ms-request-id": [ - "8f357d53481cc46195d9bfbd90478386" + "8797697ed9ef3a5c8fd98537c75703f7" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:04:00 GMT" + "Thu, 16 Apr 2015 14:42:04 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -535,8 +371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/NetworkMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/NetworkMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -544,7 +380,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "bdb07eae-7cbd-4a70-8e12-99b8abfbe67e-2015-02-23 15:04:46Z-P" + "78ce1c54-cd10-4228-91f5-1b9c52e7277f-2015-04-16 14:42:17Z-P" ], "x-ms-version": [ "2013-03-01" @@ -571,20 +407,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "bdb07eae-7cbd-4a70-8e12-99b8abfbe67e-2015-02-23 15:04:46Z-P" + "78ce1c54-cd10-4228-91f5-1b9c52e7277f-2015-04-16 14:42:17Z-P" ], "x-ms-request-id": [ - "0f5adb15898fc59ea5d8906ef4f04e0f" + "f2db13c36aab37c5a3322bfb367ea0b5" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:04:46 GMT" + "Thu, 16 Apr 2015 14:42:18 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -597,10 +433,10 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/NetworkMappings?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEw", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/NetworkMappings?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEw", "RequestMethod": "DELETE", - "RequestBody": "\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n", + "RequestBody": "\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n d588e46b-1265-4053-9e20-4fc7daed20a5\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n", "RequestHeaders": { "Content-Type": [ "application/xml" @@ -612,10 +448,10 @@ "application/xml" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1424700242078)\\/\",\"NotAfterTimestamp\":\"\\/Date(1424721842078)\\/\",\"ClientRequestId\":\"c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vDeoo71UotLIVLBkcBMaZsMbyQu3/I6AZqKSScVd3tA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1429191727271)\\/\",\"NotAfterTimestamp\":\"\\/Date(1429796527271)\\/\",\"ClientRequestId\":\"7626edbc-53f3-416f-a014-182d19c1ac79-2015-04-16 14:42:07Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"H57vE6CXRNxhDd4C0i+gj6TEhhH8rrkR2Z7sK1uTsdg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "x-ms-client-request-id": [ - "c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P" + "7626edbc-53f3-416f-a014-182d19c1ac79-2015-04-16 14:42:07Z-P" ], "x-ms-version": [ "2013-03-01" @@ -624,7 +460,7 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n a49c3dac-1536-48f0-a771-df713501e6a6\r\n c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n", + "ResponseBody": "\r\n f8467731-03eb-48ce-9f36-dd31f1a45b4e\r\n 7626edbc-53f3-416f-a014-182d19c1ac79-2015-04-16 14:42:07Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "629" @@ -642,268 +478,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P" - ], - "x-ms-request-id": [ - "5e8f54834823cfbda24117693fd44e32" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:04:03 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/a49c3dac-1536-48f0-a771-df713501e6a6?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvYTQ5YzNkYWMtMTUzNi00OGYwLWE3NzEtZGY3MTM1MDFlNmE2P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "3306e0b0-952d-4618-8c1b-670fa164edeb-2015-02-23 15:04:10Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n a49c3dac-1536-48f0-a771-df713501e6a6\r\n c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove map\r\n \r\n \r\n NetworkUnPairing\r\n 2/23/2015 3:04:04 PM\r\n InProgress\r\n InProgress\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n Network\r\n \r\n \r\n b2fc0bc3-e768-40e1-a753-6aa5bf7fd006\r\n Unmap network\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:04:05.083186Z\r\n InProgress\r\n InProgress\r\n TaskDetails\r\n \r\n \r\n f04a3ad4-be66-4ae7-8c3f-711bc43a4bb6\r\n Detach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n GroupTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "2504" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "3306e0b0-952d-4618-8c1b-670fa164edeb-2015-02-23 15:04:10Z-P" - ], - "x-ms-request-id": [ - "786a3a924e7acd6895d0e11fff13be9a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:04:11 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/a49c3dac-1536-48f0-a771-df713501e6a6?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvYTQ5YzNkYWMtMTUzNi00OGYwLWE3NzEtZGY3MTM1MDFlNmE2P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "b361d0c9-a8d4-4ce2-acea-a7d84203a10d-2015-02-23 15:04:19Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n a49c3dac-1536-48f0-a771-df713501e6a6\r\n c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove map\r\n \r\n \r\n NetworkUnPairing\r\n 2/23/2015 3:04:04 PM\r\n InProgress\r\n InProgress\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n Network\r\n \r\n \r\n b2fc0bc3-e768-40e1-a753-6aa5bf7fd006\r\n Unmap network\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:04:05.083186Z\r\n InProgress\r\n InProgress\r\n TaskDetails\r\n \r\n \r\n f04a3ad4-be66-4ae7-8c3f-711bc43a4bb6\r\n Detach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n GroupTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "2504" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "b361d0c9-a8d4-4ce2-acea-a7d84203a10d-2015-02-23 15:04:19Z-P" - ], - "x-ms-request-id": [ - "48585220decccd3c8131554bea73dab6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:04:20 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/a49c3dac-1536-48f0-a771-df713501e6a6?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvYTQ5YzNkYWMtMTUzNi00OGYwLWE3NzEtZGY3MTM1MDFlNmE2P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "d269f243-de12-46a5-b086-a57b305ad135-2015-02-23 15:04:27Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n a49c3dac-1536-48f0-a771-df713501e6a6\r\n c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove map\r\n \r\n \r\n NetworkUnPairing\r\n 2/23/2015 3:04:04 PM\r\n InProgress\r\n InProgress\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n Network\r\n \r\n \r\n b2fc0bc3-e768-40e1-a753-6aa5bf7fd006\r\n Unmap network\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:04:05.083186Z\r\n InProgress\r\n InProgress\r\n TaskDetails\r\n \r\n \r\n f04a3ad4-be66-4ae7-8c3f-711bc43a4bb6\r\n Detach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n GroupTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "2504" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "d269f243-de12-46a5-b086-a57b305ad135-2015-02-23 15:04:27Z-P" - ], - "x-ms-request-id": [ - "c55725e37c1bc0538f9c1f40088745e6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:04:28 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/a49c3dac-1536-48f0-a771-df713501e6a6?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvYTQ5YzNkYWMtMTUzNi00OGYwLWE3NzEtZGY3MTM1MDFlNmE2P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "4d280da9-8d32-4444-9efd-f05af114921a-2015-02-23 15:04:35Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n a49c3dac-1536-48f0-a771-df713501e6a6\r\n c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove map\r\n \r\n \r\n NetworkUnPairing\r\n 2/23/2015 3:04:04 PM\r\n InProgress\r\n InProgress\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n Network\r\n \r\n \r\n b2fc0bc3-e768-40e1-a753-6aa5bf7fd006\r\n Unmap network\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:04:05.083186Z\r\n InProgress\r\n InProgress\r\n TaskDetails\r\n \r\n \r\n f04a3ad4-be66-4ae7-8c3f-711bc43a4bb6\r\n Detach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n GroupTaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "2504" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "4d280da9-8d32-4444-9efd-f05af114921a-2015-02-23 15:04:35Z-P" + "7626edbc-53f3-416f-a014-182d19c1ac79-2015-04-16 14:42:07Z-P" ], "x-ms-request-id": [ - "77ff8d3f862bc87eb7a37915f0eeb25a" + "642f7b2ad48a36de88299d6c4df9ed90" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:04:36 GMT" + "Thu, 16 Apr 2015 14:42:08 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -916,8 +504,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/a49c3dac-1536-48f0-a771-df713501e6a6?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvYTQ5YzNkYWMtMTUzNi00OGYwLWE3NzEtZGY3MTM1MDFlNmE2P2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/f8467731-03eb-48ce-9f36-dd31f1a45b4e?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvZjg0Njc3MzEtMDNlYi00OGNlLTlmMzYtZGQzMWYxYTQ1YjRlP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -925,7 +513,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "33de4088-e876-47f3-997f-82da36a7f5ae-2015-02-23 15:04:43Z-P" + "60194259-54d0-4dd5-9be1-008cfa0d4a0c-2015-04-16 14:42:14Z-P" ], "x-ms-version": [ "2013-03-01" @@ -934,10 +522,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n a49c3dac-1536-48f0-a771-df713501e6a6\r\n c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove map\r\n 2/23/2015 3:04:40 PM\r\n \r\n NetworkUnPairing\r\n 2/23/2015 3:04:04 PM\r\n Succeeded\r\n Completed\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n phase2PrimaryVMNetwork\r\n Network\r\n \r\n \r\n b2fc0bc3-e768-40e1-a753-6aa5bf7fd006\r\n Unmap network\r\n \r\n \r\n 2015-02-23T15:04:38.8890688Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:04:05.083186Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n f04a3ad4-be66-4ae7-8c3f-711bc43a4bb6\r\n Detach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n Succeeded\r\n Skipped\r\n GroupTaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n f8467731-03eb-48ce-9f36-dd31f1a45b4e\r\n 7626edbc-53f3-416f-a014-182d19c1ac79-2015-04-16 14:42:07Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove map\r\n 2015-04-16T14:42:09Z\r\n \r\n NetworkUnPairing\r\n 2015-04-16T14:42:07.7585953Z\r\n Succeeded\r\n Completed\r\n d588e46b-1265-4053-9e20-4fc7daed20a5\r\n phase2RecoveryVMNetwork\r\n Network\r\n \r\n \r\n 2ae3db97-4ed0-4857-a3c2-9c4e773766d0\r\n Unmap network\r\n \r\n \r\n 2015-04-16T14:42:09.3977493Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-04-16T14:42:08.1651143Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n 9ea57a36-4ce4-435f-97a1-06b18ad5e1e3\r\n Detach network (0)\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <GroupTaskDetails xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.datacontract.org/2004/07/Microsoft.Azure.SiteRecovery.V2014_10_27\">\r\n <ChildTasks xmlns:d2p1=\"http://schemas.microsoft.com/windowsazure\" />\r\n</GroupTaskDetails>\r\n 0001-01-01T00:00:00\r\n Succeeded\r\n Skipped\r\n GroupTaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "2521" + "2531" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -952,20 +540,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "33de4088-e876-47f3-997f-82da36a7f5ae-2015-02-23 15:04:43Z-P" + "60194259-54d0-4dd5-9be1-008cfa0d4a0c-2015-04-16 14:42:14Z-P" ], "x-ms-request-id": [ - "84c31df35788c464a630613e1c63047f" + "e841507be57b3f81a1cbaea56c75d6dd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:04:44 GMT" + "Thu, 16 Apr 2015 14:42:15 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -980,6 +568,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba" + "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524" } } \ No newline at end of file diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageMappingTest.json b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageMappingTest.json index 0db889df9c70..1b0b632bc8da 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageMappingTest.json +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageMappingTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16,34 +16,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "7f5efd3075aace14afe78ac445d330be" + "31eac93eec34371d83eb544daf384f7f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:00:18 GMT" + "Thu, 16 Apr 2015 14:39:17 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -57,34 +57,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "9f425bdb3b49c0d5aa76aa568df38642" + "0795caf12ed333f3a36526ad144eae63" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:00:20 GMT" + "Thu, 16 Apr 2015 14:39:19 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -98,34 +98,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "a33f193f4a62c531968880d5f4cb5cdd" + "d40286d483e53ff3adc57c65e6532fec" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:00:25 GMT" + "Thu, 16 Apr 2015 14:39:23 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -139,34 +139,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "d463ac152407cb11be6f820948e296c6" + "4d740482122a3c75b322816632c1a296" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:00:28 GMT" + "Thu, 16 Apr 2015 14:39:25 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -180,34 +180,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "7e683aab1ca2c853939fcb078687992c" + "1c27fd2007673bf3b447e802030ea6e0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:00:31 GMT" + "Thu, 16 Apr 2015 14:39:28 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -221,34 +221,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "02fbbba99899c3b2aaffe98f210e6793" + "f01957f128e738918236d249dfd53b94" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:00:39 GMT" + "Thu, 16 Apr 2015 14:39:29 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -262,34 +262,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "8383bcae912ac5688d533d51ab46933e" + "3e183557b61f3b43bc238acdbe53e2c9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:00:47 GMT" + "Thu, 16 Apr 2015 14:39:38 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -303,157 +303,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "10157021b0c5cb3795a055d0d17f22b4" + "5d491d1acae13e498ebd03ad875587b4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:00:56 GMT" + "Thu, 16 Apr 2015 14:39:41 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "e7dd2430f041c3f8b07c46cb6cce34bd" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:01:03 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "7b2ff9fb40bec7d79f727f7b29ce545d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:01:11 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "1868" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "x-ms-request-id": [ - "1404ecfa2df2cb55887497f1f7071591" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:01:15 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Servers?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Servers?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -461,7 +338,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "236ce266-9ff1-4c75-ad66-c5a127dd7e93-2015-02-23 15:00:21Z-P" + "792f2db8-15a5-4f5e-94af-0b0ec0640f2e-2015-04-16 14:39:19Z-P" ], "x-ms-version": [ "2013-03-01" @@ -470,7 +347,7 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T15:00:02.3888329Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n HRM-04-021.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T14:58:58.4089848Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n VMM\r\n \r\n", + "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n HRM-04-020.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:39:18.9313309Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:39:19.7621001Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n VMM\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "929" @@ -488,20 +365,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "236ce266-9ff1-4c75-ad66-c5a127dd7e93-2015-02-23 15:00:21Z-P" + "792f2db8-15a5-4f5e-94af-0b0ec0640f2e-2015-04-16 14:39:19Z-P" ], "x-ms-request-id": [ - "0ed3a2b059f6cf95887c2e02edba03e0" + "1064a655f7953739bffeb3e4bac9c60d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:00:23 GMT" + "Thu, 16 Apr 2015 14:39:21 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -514,8 +391,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Storages?api-version=2015-02-10&ServerId=774859b0-1966-48cc-9df7-759c441b7a8c", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1N0b3JhZ2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTAmU2VydmVySWQ9Nzc0ODU5YjAtMTk2Ni00OGNjLTlkZjctNzU5YzQ0MWI3YThj", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Storages?api-version=2015-04-10&ServerId=4c83e038-7abd-428b-9138-81065e2bb559", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTAmU2VydmVySWQ9NGM4M2UwMzgtN2FiZC00MjhiLTkxMzgtODEwNjVlMmJiNTU5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -523,7 +400,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "6fde27e9-499a-4251-98fc-bc6f84f17ed8-2015-02-23 15:00:26Z-P" + "9b607fa8-1002-44f1-9978-8d04f287c877-2015-04-16 14:39:23Z-P" ], "x-ms-version": [ "2013-03-01" @@ -532,10 +409,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n Classification\r\n \r\n \r\n 3fed928c-2988-47a1-b212-4a0037bb4040\r\n phase2PrimaryStorageClassification\r\n 3fed928c-2988-47a1-b212-4a0037bb4040\r\n VMM\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n Classification\r\n \r\n", + "ResponseBody": "\r\n \r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n phase2RecoveryStorageClassification\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n VMM\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n Classification\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "720" + "456" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -550,20 +427,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "6fde27e9-499a-4251-98fc-bc6f84f17ed8-2015-02-23 15:00:26Z-P" + "9b607fa8-1002-44f1-9978-8d04f287c877-2015-04-16 14:39:23Z-P" ], "x-ms-request-id": [ - "390a4c26f0d5cd4cbff22ded93140041" + "95479ae413073909ac5557ba58b66990" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:00:27 GMT" + "Thu, 16 Apr 2015 14:39:25 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -576,8 +453,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/StorageMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Storages?api-version=2015-04-10&ServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTAmU2VydmVySWQ9OGVjNjRlNzktZmI5Ny00ODM3LWE2YjEtMTk2OGYzZmNjNjNm", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -585,7 +462,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "e2f1e299-ff11-4e3a-9a48-580481032149-2015-02-23 15:00:28Z-P" + "6c9d653a-d6e5-4b35-9354-57ff2ccbbf40-2015-04-16 14:39:26Z-P" ], "x-ms-version": [ "2013-03-01" @@ -594,10 +471,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "", + "ResponseBody": "\r\n \r\n 428b97ff-fca2-4ac9-a169-7b39c00ddad4\r\n phase2PrimaryStorageClassification\r\n 428b97ff-fca2-4ac9-a169-7b39c00ddad4\r\n VMM\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n Classification\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "126" + "455" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -612,20 +489,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "e2f1e299-ff11-4e3a-9a48-580481032149-2015-02-23 15:00:28Z-P" + "6c9d653a-d6e5-4b35-9354-57ff2ccbbf40-2015-04-16 14:39:26Z-P" ], "x-ms-request-id": [ - "1950e74131f8c35f9cdeb2468c4d874e" + "92428ab532d53379b2f043f99fb755e3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:00:29 GMT" + "Thu, 16 Apr 2015 14:39:26 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -638,8 +515,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/StorageMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/StorageMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -647,7 +524,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "537330b4-357d-42f5-b7bb-57d762b4259e-2015-02-23 15:01:16Z-P" + "ff8b5f0d-7f9a-417b-8828-198c31eaf7c3-2015-04-16 14:39:28Z-P" ], "x-ms-version": [ "2013-03-01" @@ -656,81 +533,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 3fed928c-2988-47a1-b212-4a0037bb4040\r\n phase2PrimaryStorageClassification\r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "627" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "537330b4-357d-42f5-b7bb-57d762b4259e-2015-02-23 15:01:16Z-P" - ], - "x-ms-request-id": [ - "a63ac1053847c5b8a1862952f0652c92" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:01:17 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/StorageMappings?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEw", - "RequestMethod": "POST", - "RequestBody": "\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 3fed928c-2988-47a1-b212-4a0037bb4040\r\n", - "RequestHeaders": { - "Content-Type": [ - "application/xml" - ], - "Content-Length": [ - "403" - ], - "Accept": [ - "application/xml" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1424700031280)\\/\",\"NotAfterTimestamp\":\"\\/Date(1424721631280)\\/\",\"ClientRequestId\":\"5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ECadxxV9pheVDByCX61AhdS0HSsGuRjcCUiT2oup/o0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" - ], - "x-ms-client-request-id": [ - "5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n d731cb6a-bd1c-40e0-8fc8-51fa3cb93111\r\n 5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "629" + "126" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -745,20 +551,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P" + "ff8b5f0d-7f9a-417b-8828-198c31eaf7c3-2015-04-16 14:39:28Z-P" ], "x-ms-request-id": [ - "595130f7582cc14b8faf9fa2f72859b5" + "6284c28a8be931fb9c4c6f00895f2385" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:00:33 GMT" + "Thu, 16 Apr 2015 14:39:29 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -771,8 +577,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/d731cb6a-bd1c-40e0-8fc8-51fa3cb93111?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZDczMWNiNmEtYmQxYy00MGUwLThmYzgtNTFmYTNjYjkzMTExP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/StorageMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -780,7 +586,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "7b3106ff-b0e3-4d43-aef5-6565de5b3d7e-2015-02-23 15:00:40Z-P" + "cf485d0c-49fe-4dd7-8874-dc61928cde58-2015-04-16 14:39:41Z-P" ], "x-ms-version": [ "2013-03-01" @@ -789,10 +595,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n d731cb6a-bd1c-40e0-8fc8-51fa3cb93111\r\n 5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Classification mapping\r\n \r\n \r\n ClassificationPairing\r\n 2/23/2015 3:00:33 PM\r\n InProgress\r\n InProgress\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n PairClassificationsPreflightChecksTask\r\n Prerequisites check for mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n PairClassificationsTask\r\n Mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n phase2RecoveryStorageClassification\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n 428b97ff-fca2-4ac9-a169-7b39c00ddad4\r\n phase2PrimaryStorageClassification\r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "2864" + "627" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -807,20 +613,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "7b3106ff-b0e3-4d43-aef5-6565de5b3d7e-2015-02-23 15:00:40Z-P" + "cf485d0c-49fe-4dd7-8874-dc61928cde58-2015-04-16 14:39:41Z-P" ], "x-ms-request-id": [ - "7a381aa43188c91c91f25b5a8782824c" + "a3ea0080dda836e3ad952d726ac82462" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:00:40 GMT" + "Thu, 16 Apr 2015 14:39:42 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -833,140 +639,25 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/d731cb6a-bd1c-40e0-8fc8-51fa3cb93111?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZDczMWNiNmEtYmQxYy00MGUwLThmYzgtNTFmYTNjYjkzMTExP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/StorageMappings?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEw", + "RequestMethod": "POST", + "RequestBody": "\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n 428b97ff-fca2-4ac9-a169-7b39c00ddad4\r\n", "RequestHeaders": { - "Accept": [ - "application/xml" - ], - "x-ms-client-request-id": [ - "bfdf095b-8227-4f07-b3b4-cba9646e12c4-2015-02-23 15:00:48Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n d731cb6a-bd1c-40e0-8fc8-51fa3cb93111\r\n 5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Classification mapping\r\n \r\n \r\n ClassificationPairing\r\n 2/23/2015 3:00:33 PM\r\n InProgress\r\n InProgress\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n PairClassificationsPreflightChecksTask\r\n Prerequisites check for mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n PairClassificationsTask\r\n Mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { - "Content-Length": [ - "2864" - ], "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "bfdf095b-8227-4f07-b3b4-cba9646e12c4-2015-02-23 15:00:48Z-P" - ], - "x-ms-request-id": [ - "90402d39b1fec5929238ff8c0f78516a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:00:49 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/d731cb6a-bd1c-40e0-8fc8-51fa3cb93111?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZDczMWNiNmEtYmQxYy00MGUwLThmYzgtNTFmYTNjYjkzMTExP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Accept": [ "application/xml" ], - "x-ms-client-request-id": [ - "34541976-748f-4a2a-840a-dade904df9ef-2015-02-23 15:00:56Z-P" - ], - "x-ms-version": [ - "2013-03-01" - ], - "User-Agent": [ - "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" - ] - }, - "ResponseBody": "\r\n d731cb6a-bd1c-40e0-8fc8-51fa3cb93111\r\n 5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Classification mapping\r\n \r\n \r\n ClassificationPairing\r\n 2/23/2015 3:00:33 PM\r\n InProgress\r\n InProgress\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n PairClassificationsPreflightChecksTask\r\n Prerequisites check for mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n PairClassificationsTask\r\n Mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n", - "ResponseHeaders": { "Content-Length": [ - "2864" - ], - "Content-Type": [ - "application/xml; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" - ], - "x-ms-client-request-id": [ - "34541976-748f-4a2a-840a-dade904df9ef-2015-02-23 15:00:56Z-P" - ], - "x-ms-request-id": [ - "356b8f98f834ca3282ac906084f06bcf" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 23 Feb 2015 15:00:57 GMT" - ], - "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", - "Microsoft-HTTPAPI/2.0" - ], - "X-AspNet-Version": [ - "4.0.30319" + "403" ], - "X-Powered-By": [ - "ASP.NET" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/d731cb6a-bd1c-40e0-8fc8-51fa3cb93111?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZDczMWNiNmEtYmQxYy00MGUwLThmYzgtNTFmYTNjYjkzMTExP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "Accept": [ "application/xml" ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1429191570819)\\/\",\"NotAfterTimestamp\":\"\\/Date(1429796370819)\\/\",\"ClientRequestId\":\"8ee92d34-71ab-4314-a490-c341ce22e921-2015-04-16 14:39:30Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IuaLMltLUBA6c7/MhnbGFmLEGLmz9a8yNY9PBMfVeTw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], "x-ms-client-request-id": [ - "6fad9fbc-5eeb-4fcd-88f7-222a0a706966-2015-02-23 15:01:04Z-P" + "8ee92d34-71ab-4314-a490-c341ce22e921-2015-04-16 14:39:30Z-P" ], "x-ms-version": [ "2013-03-01" @@ -975,10 +666,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n d731cb6a-bd1c-40e0-8fc8-51fa3cb93111\r\n 5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Classification mapping\r\n \r\n \r\n ClassificationPairing\r\n 2/23/2015 3:00:33 PM\r\n InProgress\r\n InProgress\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n PairClassificationsPreflightChecksTask\r\n Prerequisites check for mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n PairClassificationsTask\r\n Mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 82ecbee4-d887-47c0-bda1-d594cdbca102\r\n 8ee92d34-71ab-4314-a490-c341ce22e921-2015-04-16 14:39:30Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Classification mapping\r\n \r\n \r\n ClassificationPairing\r\n 2015-04-16T14:39:31.749611Z\r\n InProgress\r\n InProgress\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n PairClassificationsPreflightChecksTask\r\n Prerequisites check for mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-04-16T14:39:32.0746738Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n PairClassificationsTask\r\n Mapping classifications\r\n \r\n \r\n 0001-01-01T00:00:00\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 0001-01-01T00:00:00\r\n NotStarted\r\n NotStarted\r\n TaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "2864" + "2878" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -993,20 +684,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "6fad9fbc-5eeb-4fcd-88f7-222a0a706966-2015-02-23 15:01:04Z-P" + "8ee92d34-71ab-4314-a490-c341ce22e921-2015-04-16 14:39:30Z-P" ], "x-ms-request-id": [ - "b4580805468acb36bab1afe5ea28580b" + "5f38d511f8ba3c20a185343fd7344c0a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:01:04 GMT" + "Thu, 16 Apr 2015 14:39:32 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1019,8 +710,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/d731cb6a-bd1c-40e0-8fc8-51fa3cb93111?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvZDczMWNiNmEtYmQxYy00MGUwLThmYzgtNTFmYTNjYjkzMTExP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/82ecbee4-d887-47c0-bda1-d594cdbca102?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvODJlY2JlZTQtZDg4Ny00N2MwLWJkYTEtZDU5NGNkYmNhMTAyP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1028,7 +719,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "bc17cf04-f302-40f3-81ae-a90868c076fa-2015-02-23 15:01:12Z-P" + "02eaec47-5fb1-4e40-9e0e-e1f2088449ad-2015-04-16 14:39:39Z-P" ], "x-ms-version": [ "2013-03-01" @@ -1037,10 +728,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n d731cb6a-bd1c-40e0-8fc8-51fa3cb93111\r\n 5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Classification mapping\r\n 2/23/2015 3:01:08 PM\r\n \r\n ClassificationPairing\r\n 2/23/2015 3:00:33 PM\r\n Succeeded\r\n Completed\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n PairClassificationsPreflightChecksTask\r\n Prerequisites check for mapping classifications\r\n \r\n \r\n 2015-02-23T15:01:08.6821198Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:01:08.4321314Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n PairClassificationsTask\r\n Mapping classifications\r\n \r\n \r\n 2015-02-23T15:01:08.7446203Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:01:08.6821198Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 82ecbee4-d887-47c0-bda1-d594cdbca102\r\n 8ee92d34-71ab-4314-a490-c341ce22e921-2015-04-16 14:39:30Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Classification mapping\r\n 2015-04-16T14:39:32Z\r\n \r\n ClassificationPairing\r\n 2015-04-16T14:39:31.749611Z\r\n Succeeded\r\n Completed\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n PairClassificationsPreflightChecksTask\r\n Prerequisites check for mapping classifications\r\n \r\n \r\n 2015-04-16T14:39:32.2062333Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-04-16T14:39:32.0746738Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n PairClassificationsTask\r\n Mapping classifications\r\n \r\n \r\n 2015-04-16T14:39:32.2843175Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-04-16T14:39:32.2062333Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "2910" + "2917" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -1055,20 +746,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "bc17cf04-f302-40f3-81ae-a90868c076fa-2015-02-23 15:01:12Z-P" + "02eaec47-5fb1-4e40-9e0e-e1f2088449ad-2015-04-16 14:39:39Z-P" ], "x-ms-request-id": [ - "f4f73c140963c6a49c1a69e571359f19" + "0335b0e3c0e434989234c8fd01da1094" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:01:13 GMT" + "Thu, 16 Apr 2015 14:39:39 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -1083,6 +774,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba" + "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524" } } \ No newline at end of file diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageUnMappingTest.json b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageUnMappingTest.json index 5eb7d1512b48..de0c11cee91c 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageUnMappingTest.json +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/SessionRecords/Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests/StorageUnMappingTest.json @@ -1,8 +1,8 @@ { "Entries": [ { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16,34 +16,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "0d6a5f449ea4c702a944d4135076873b" + "df5a45f3520b37319907cd2b3271732e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:01:53 GMT" + "Thu, 16 Apr 2015 14:41:19 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -57,34 +57,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "a922f6a331c8cb87906e44790c30ba0f" + "c99607ce844032dea00c3e3fec14a5e6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:01:55 GMT" + "Thu, 16 Apr 2015 14:41:20 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -98,34 +98,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "dedcece47528c79589fdbc829de8774b" + "301986597bfd383b8811aed28a70769b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:01:59 GMT" + "Thu, 16 Apr 2015 14:41:23 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -139,34 +139,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "6ee6c318f374c2628b4bea0f8e40e765" + "485b73ffd32733e8a6f1c500bd55bee3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:02:03 GMT" + "Thu, 16 Apr 2015 14:41:26 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -180,34 +180,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "a7a613d2a540c8a88a4640340255b96b" + "f6b2f69a4878386d946949978025e63e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:02:10 GMT" + "Thu, 16 Apr 2015 14:41:34 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -221,34 +221,34 @@ "Microsoft.WindowsAzure.Management.RecoveryServices.RecoveryServicesManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n CS-West-US-RecoveryServices\r\n \r\n Q1MtV2VzdC1VUy1SZWNvdmVyeVNlcnZpY2Vz\r\n West US\r\n \r\n \r\n \r\n RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US\r\n \r\n 10f2b605-0935-49d2-89dc-e1befc67e406\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n Hosters-FC-BVT-Vault\r\n \r\n 1.1\r\n 04d7d387-7bc1-4b85-902d-42c7913f9c68\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 6776506762078999256\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n \r\n VS-iamanewaccount-Group\r\n \r\n Resource group based cloud service.\r\n North Central US\r\n \r\n \r\n visualstudio\r\n account\r\n iamanewaccount\r\n 6a05b50f-981c-4bda-8cb7-7dc1675b17ae\r\n NotFound\r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", + "ResponseBody": "\r\n \r\n RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US\r\n \r\n 5881c515-ffd2-4f5b-ba20-79712f40e24b\r\n West US\r\n \r\n \r\n WAHyperVRecoveryManager\r\n HyperVRecoveryManagerVault\r\n vault4RecordingTests\r\n \r\n 1.1\r\n 72a6d8e1-64bd-4557-8c2d-db1da8cb0730\r\n Started\r\n Ok\r\n \r\n \r\n StampId\r\n abeb635b-e186-4605-b464-c7c9e55b226a\r\n \r\n \r\n ResourceId\r\n 3856054504088339384\r\n \r\n \r\n BackendStampId\r\n 75d5c811-a801-4332-8f96-43640cad60e9\r\n \r\n \r\n \r\n Create\r\n Succeeded\r\n \r\n \r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "1868" + "1115" ], "Content-Type": [ "application/xml; charset=utf-8" ], "x-ms-request-id": [ - "6f5f4fa7fd6ec099a7addea9e910bd5f" + "18c82a131d0b37cb80afc87af5e2e78d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:02:13 GMT" + "Thu, 16 Apr 2015 14:41:37 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Servers?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wMi0xMA==", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Servers?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1NlcnZlcnM/YXBpLXZlcnNpb249MjAxNS0wNC0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -256,7 +256,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "e5b91bdd-4125-40ca-b541-8c1a5a6c6cfd-2015-02-23 15:01:56Z-P" + "58f2a926-665c-4a06-ab3e-1a2d0329a121-2015-04-16 14:41:20Z-P" ], "x-ms-version": [ "2013-03-01" @@ -265,7 +265,7 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T15:01:32.4456534Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n VMM\r\n VMM\r\n \r\n \r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n HRM-04-021.dratest.nttest.microsoft.com\r\n true\r\n 2015-02-23T15:01:57.8805747Z\r\n 3.5.708.0\r\n 3.2.7768.0\r\n dc1ed9b2-7b90-4534-9977-12881d278fb5\r\n VMM\r\n VMM\r\n \r\n", + "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n HRM-04-020.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:41:19.0943246Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n VMM\r\n VMM\r\n \r\n \r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n HRM-04-019.dratest.nttest.microsoft.com\r\n true\r\n 2015-04-16T14:41:19.9458194Z\r\n 3.5.721.0\r\n 3.2.7768.0\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n VMM\r\n VMM\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "929" @@ -283,20 +283,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "e5b91bdd-4125-40ca-b541-8c1a5a6c6cfd-2015-02-23 15:01:56Z-P" + "58f2a926-665c-4a06-ab3e-1a2d0329a121-2015-04-16 14:41:20Z-P" ], "x-ms-request-id": [ - "5c9028081490c164b548d0715fb07d8c" + "addc81afc12833fdbba517b63ec208bd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:01:58 GMT" + "Thu, 16 Apr 2015 14:41:23 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -309,8 +309,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/StorageMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/StorageMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -318,7 +318,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "9cbe32c9-5b14-44a5-bc54-ac26f61114c9-2015-02-23 15:02:00Z-P" + "b59cf483-6724-43b5-925c-80bb90c96a53-2015-04-16 14:41:24Z-P" ], "x-ms-version": [ "2013-03-01" @@ -327,7 +327,7 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n \r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 3fed928c-2988-47a1-b212-4a0037bb4040\r\n phase2PrimaryStorageClassification\r\n \r\n", + "ResponseBody": "\r\n \r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n phase2RecoveryStorageClassification\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n 428b97ff-fca2-4ac9-a169-7b39c00ddad4\r\n phase2PrimaryStorageClassification\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "627" @@ -345,20 +345,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "9cbe32c9-5b14-44a5-bc54-ac26f61114c9-2015-02-23 15:02:00Z-P" + "b59cf483-6724-43b5-925c-80bb90c96a53-2015-04-16 14:41:24Z-P" ], "x-ms-request-id": [ - "972f709d1d1ac022b7399eccde151a57" + "3e6f62698b5d323fa352e075a08445c9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:02:01 GMT" + "Thu, 16 Apr 2015 14:41:25 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -371,8 +371,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/StorageMappings?api-version=2015-02-10&PrimaryServerId=774859b0-1966-48cc-9df7-759c441b7a8c&RecoveryServerId=774859b0-1966-48cc-9df7-759c441b7a8c", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEwJlByaW1hcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGMmUmVjb3ZlcnlTZXJ2ZXJJZD03NzQ4NTliMC0xOTY2LTQ4Y2MtOWRmNy03NTljNDQxYjdhOGM=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/StorageMappings?api-version=2015-04-10&PrimaryServerId=4c83e038-7abd-428b-9138-81065e2bb559&RecoveryServerId=8ec64e79-fb97-4837-a6b1-1968f3fcc63f", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEwJlByaW1hcnlTZXJ2ZXJJZD00YzgzZTAzOC03YWJkLTQyOGItOTEzOC04MTA2NWUyYmI1NTkmUmVjb3ZlcnlTZXJ2ZXJJZD04ZWM2NGU3OS1mYjk3LTQ4MzctYTZiMS0xOTY4ZjNmY2M2M2Y=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -380,7 +380,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "e5cc6e4a-85bd-4fbe-865b-e442c17c6520-2015-02-23 15:02:14Z-P" + "e47b0ace-bf32-4cca-a0cf-08d285d7f22b-2015-04-16 14:41:37Z-P" ], "x-ms-version": [ "2013-03-01" @@ -407,20 +407,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "e5cc6e4a-85bd-4fbe-865b-e442c17c6520-2015-02-23 15:02:14Z-P" + "e47b0ace-bf32-4cca-a0cf-08d285d7f22b-2015-04-16 14:41:37Z-P" ], "x-ms-request-id": [ - "4cd59cd92e95cbe689c72c329461a3fc" + "f8a7f3dab4f53d418aac1a6b6e594439" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:02:15 GMT" + "Thu, 16 Apr 2015 14:41:38 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -433,10 +433,10 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/StorageMappings?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTAyLTEw", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/StorageMappings?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEw", "RequestMethod": "DELETE", - "RequestBody": "\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 3fed928c-2988-47a1-b212-4a0037bb4040\r\n", + "RequestBody": "\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n 428b97ff-fca2-4ac9-a169-7b39c00ddad4\r\n", "RequestHeaders": { "Content-Type": [ "application/xml" @@ -448,10 +448,10 @@ "application/xml" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1424700123929)\\/\",\"NotAfterTimestamp\":\"\\/Date(1424721723929)\\/\",\"ClientRequestId\":\"df4584fe-82b9-4b3f-82b1-7ea7e40217c2-2015-02-23 15:02:03Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ip2a65KSYWL84ygC8oaDFwaFfuS+0iqqrKHuokeN+GA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1429191687041)\\/\",\"NotAfterTimestamp\":\"\\/Date(1429796487041)\\/\",\"ClientRequestId\":\"f2a5ea75-def2-432f-b1ee-111a7e8be3a8-2015-04-16 14:41:27Z-P\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BrcutAMshA+DV9m7NS8cAuljLSzyhJj6TtwL7sDvcYU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "x-ms-client-request-id": [ - "df4584fe-82b9-4b3f-82b1-7ea7e40217c2-2015-02-23 15:02:03Z-P" + "f2a5ea75-def2-432f-b1ee-111a7e8be3a8-2015-04-16 14:41:27Z-P" ], "x-ms-version": [ "2013-03-01" @@ -460,7 +460,7 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n 31ccbff0-3303-49bd-8106-3b3bc7f6407b\r\n df4584fe-82b9-4b3f-82b1-7ea7e40217c2-2015-02-23 15:02:03Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n", + "ResponseBody": "\r\n 9cdf0c4b-4ed8-40a6-be99-62c8ce47b0e0\r\n f2a5ea75-def2-432f-b1ee-111a7e8be3a8-2015-04-16 14:41:27Z-P\r\n \r\n \r\n \r\n \r\n \r\n \r\n NotStarted\r\n NotStarted\r\n \r\n \r\n ProtectionEntity\r\n \r\n", "ResponseHeaders": { "Content-Length": [ "629" @@ -478,20 +478,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "df4584fe-82b9-4b3f-82b1-7ea7e40217c2-2015-02-23 15:02:03Z-P" + "f2a5ea75-def2-432f-b1ee-111a7e8be3a8-2015-04-16 14:41:27Z-P" ], "x-ms-request-id": [ - "c845d706802bc79a9749136086349c70" + "24fc7fbbdc163288819b25eb6b33b34d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:02:04 GMT" + "Thu, 16 Apr 2015 14:41:28 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -504,8 +504,8 @@ "StatusCode": 200 }, { - "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices/RecoveryServices-T2RMT6H7QF7AENS66ZV7KS2QZA2BXRAUPOECQXGXX2Q4V3VQ6MUQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/Hosters-FC-BVT-Vault/Jobs/31ccbff0-3303-49bd-8106-3b3bc7f6407b?api-version=2015-02-10", - "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtVDJSTVQ2SDdRRjdBRU5TNjZaVjdLUzJRWkEyQlhSQVVQT0VDUVhHWFgyUTRWM1ZRNk1VUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L0hvc3RlcnMtRkMtQlZULVZhdWx0L0pvYnMvMzFjY2JmZjAtMzMwMy00OWJkLTgxMDYtM2IzYmM3ZjY0MDdiP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=", + "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/Jobs/9cdf0c4b-4ed8-40a6-be99-62c8ce47b0e0?api-version=2015-04-10", + "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL0pvYnMvOWNkZjBjNGItNGVkOC00MGE2LWJlOTktNjJjOGNlNDdiMGUwP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -513,7 +513,7 @@ "application/xml" ], "x-ms-client-request-id": [ - "42764da0-e31f-4c26-af15-1985fc6ecc1a-2015-02-23 15:02:11Z-P" + "d6ca71c1-b76d-42f0-abff-7d93306a6eb2-2015-04-16 14:41:35Z-P" ], "x-ms-version": [ "2013-03-01" @@ -522,10 +522,10 @@ "Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0" ] }, - "ResponseBody": "\r\n 31ccbff0-3303-49bd-8106-3b3bc7f6407b\r\n df4584fe-82b9-4b3f-82b1-7ea7e40217c2-2015-02-23 15:02:03Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove classification mapping\r\n 2/23/2015 3:02:06 PM\r\n \r\n ClassificationUnpairing\r\n 2/23/2015 3:02:05 PM\r\n Succeeded\r\n Completed\r\n 12204d6a-3119-4404-ac54-464cab6c6810\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n UnpairClassificationsPreflightChecksTask\r\n Prerequisites check for unmapping classifications\r\n \r\n \r\n 2015-02-23T15:02:06.3074297Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:02:06.1340112Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n UnpairClassificationsTask\r\n Unmapping classifications\r\n \r\n \r\n 2015-02-23T15:02:06.3553235Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-02-23T15:02:06.3074297Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n", + "ResponseBody": "\r\n 9cdf0c4b-4ed8-40a6-be99-62c8ce47b0e0\r\n f2a5ea75-def2-432f-b1ee-111a7e8be3a8-2015-04-16 14:41:27Z-P\r\n \r\n Cancel\r\n Restart\r\n \r\n Remove classification mapping\r\n 2015-04-16T14:41:28Z\r\n \r\n ClassificationUnpairing\r\n 2015-04-16T14:41:27.5949145Z\r\n Succeeded\r\n Completed\r\n eed8635c-cc78-4fa5-a81b-ccd6ff8f23fd\r\n phase2RecoveryStorageClassification\r\n Storage\r\n \r\n \r\n UnpairClassificationsPreflightChecksTask\r\n Prerequisites check for unmapping classifications\r\n \r\n \r\n 2015-04-16T14:41:28.4871829Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-04-16T14:41:28.1905094Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n UnpairClassificationsTask\r\n Unmapping classifications\r\n \r\n \r\n 2015-04-16T14:41:28.5809349Z\r\n <Task xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://schemas.microsoft.com/windowsazure\">\r\n <ID i:nil=\"true\" />\r\n <Name i:nil=\"true\" />\r\n <Actions xmlns:d2p1=\"http://schemas.microsoft.com/2003/10/Serialization/Arrays\" i:nil=\"true\" />\r\n <ChildJobId i:nil=\"true\" />\r\n <EndTime>0001-01-01T00:00:00</EndTime>\r\n <ExtendedDetails i:nil=\"true\" />\r\n <StartTime>0001-01-01T00:00:00</StartTime>\r\n <State i:nil=\"true\" />\r\n <StateDescription i:nil=\"true\" />\r\n <TaskType i:nil=\"true\" />\r\n</Task>\r\n 2015-04-16T14:41:28.4871829Z\r\n Succeeded\r\n Completed\r\n TaskDetails\r\n \r\n \r\n", "ResponseHeaders": { "Content-Length": [ - "2927" + "2935" ], "Content-Type": [ "application/xml; charset=utf-8" @@ -540,20 +540,20 @@ "max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains" ], "x-ms-client-request-id": [ - "42764da0-e31f-4c26-af15-1985fc6ecc1a-2015-02-23 15:02:11Z-P" + "d6ca71c1-b76d-42f0-abff-7d93306a6eb2-2015-04-16 14:41:35Z-P" ], "x-ms-request-id": [ - "f458ca104bf3ccb4b7aec3184554038a" + "eb2d135865cf3aa5be0d3d026850b954" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Mon, 23 Feb 2015 15:02:12 GMT" + "Thu, 16 Apr 2015 14:41:36 GMT" ], "Server": [ - "1.0.6196.1444", - "(rd_rdfe.150212-0800)", + "1.0.6198.202", + "(rd_rdfe_stable.150307-1902)", "Microsoft-HTTPAPI/2.0" ], "X-AspNet-Version": [ @@ -568,6 +568,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba" + "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524" } } \ No newline at end of file diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config index 93ab3cd2a47f..f974f64e9836 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/packages.config @@ -4,7 +4,7 @@ - + diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj index 549e0bbe84c5..0decc2bf3e57 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Commands.RecoveryServices.csproj @@ -89,7 +89,7 @@ False - ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.0.5.1-preview\lib\net40\Microsoft.WindowsAzure.Management.SiteRecovery.dll + ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.0.6.0-preview\lib\net40\Microsoft.WindowsAzure.Management.SiteRecovery.dll ..\..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll @@ -149,6 +149,7 @@ + @@ -163,9 +164,15 @@ + + + + + + @@ -225,6 +232,9 @@ + + PreserveNewest + diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Microsoft.Azure.Commands.RecoveryServices.dll-help.xml b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Microsoft.Azure.Commands.RecoveryServices.dll-help.xml index ccf0d7feb21f..964795ae9b6f 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Microsoft.Azure.Commands.RecoveryServices.dll-help.xml +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Microsoft.Azure.Commands.RecoveryServices.dll-help.xml @@ -900,334 +900,73 @@ - - - - Get-AzureSiteRecoveryJob - - - The Get-AzureSiteRecoveryJob cmdlet gets Microsoft Azure Site Recovery jobs. You can use this cmdlet to view the information of the operation for current Azure Site Recovery vault. - - - - - Get - AzureSiteRecoveryJob - - - - Get the information of the operation for current Azure Site Recovery Vault. - - - - - Get-AzureSiteRecoveryJob - - Id - - Specifies the ID of a job to get. - - string - - - - Get-AzureSiteRecoveryJob - - Job - - Specifies an Azure Site Recovery job object to get. - - ASRJob - - - - Get-AzureSiteRecoveryJob - - EndTime - - Specifies a end time as a DateTime object. This cmdlet gets jobs that ends after the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date. - - DateTime - - - StartTime - - Specifies a start time as a DateTime object. This cmdlet gets jobs that begin after the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date. - - DateTime - - - State - - Specifies an input state for an Azure Site Recovery job. This cmdlet gets jobs that match the state that this parameter specifies. - - string - - - TargetObjectId - - ID of the object on which Job was targeted to. - - string - - - - - - - EndTime - - Specifies a end time as a DateTime object. This cmdlet gets jobs that ends after the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date. - - - DateTime - - DateTime - - - - - - Id - - Specifies the ID of a job to get. - - - string - - string - - - - - - Job - - Specifies an Azure Site Recovery job object to get. - - - ASRJob - - ASRJob - - - - - - StartTime - - Specifies a start time as a DateTime object. This cmdlet gets jobs that begin after the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date. - - - DateTime - - DateTime - - - - - - State - - Specifies an input state for an Azure Site Recovery job. This cmdlet gets jobs that match the state that this parameter specifies. - - - string - - string - - - - - - TargetObjectId - - ID of the object on which Job was targeted to. - - - string - - string - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - - - C:\PS> - - -Get-AzureSiteRecoveryJob -Id d0b56c01-1fd7-411a-94e9-be717ac6601e - -ID : d0b56c01-1fd7-411a-94e9-be717ac6601e -ClientRequestId : 0d259706-7882-4614-81bf-7d155f3600cb-2014-10-06 09:40:26Z -State : Succeeded -StateDescription : Completed -StartTime : 10/6/2014 9:40:28 AM -EndTime : 10/6/2014 9:40:30 AM -AllowedActions : {Cancel, Restart} -Name : Remove classification configuration -Tasks : {Prerequisites check for unpairing classifications, Unpairing classifications} -Errors : {} - - Description - ----------- - - - - - - - - - - - - - - - - -------------------------- EXAMPLE 2 -------------------------- - - - C:\PS> - - -$StartTime = Get-Date "2015-02-20 06:10:03Z" -$EndTime = Get-Date "2015-02-20 06:20:03Z" -Get-AzureSiteRecoveryJob -StartTime $StartTime -EndTime $EndTime - -Name : SaveRecoveryPlan -ID : 5d6389f7-3f08-48d6-9d2c-e4a4aed36a0b -ClientRequestId : bc4b291d-4722-419e-a7a3-7a58674c35a3-2015-02-20 06:14:03Z -State : Succeeded -StateDescription : Completed -StartTime : 2/20/2015 6:14:04 AM -EndTime : 2/20/2015 6:14:05 AM -TargetObjectId : 2d11e8be-29b8-4152-a8b9-2a6a9304537a -TargetObjectType : RecoveryPlan -TargetObjectName : TestRP -AllowedActions : -Tasks : {Save a recovery plan task} -Errors : {} - - Description - ----------- - Provide the DateTime object in UTC as input to StartTime and EndTime parameter. - - - - - - - - - - - - - - - - - - - - - - - Get-AzureSiteRecoveryRecoveryPlan + Get-AzureSiteRecoveryJob - Get information of the Recovery Plan for current Azure Site Recovery Vault + The Get-AzureSiteRecoveryJob cmdlet gets Microsoft Azure Site Recovery jobs. You can use this cmdlet to view the information of the operation for current Azure Site Recovery vault. Get - AzureSiteRecoveryRecoveryPlan + AzureSiteRecoveryJob - Get information of the Recovery Plan for current Azure Site Recovery Vault. A recovery plan gathers virtual machines in a group for the purposes of failover and recovery + Get the information of the operation for current Azure Site Recovery Vault. - Get-AzureSiteRecoveryRecoveryPlan - - - Get-AzureSiteRecoveryRecoveryPlan + Get-AzureSiteRecoveryJob - Name + Id - name of the recovery plan + Specifies the ID of a job to get. string - Get-AzureSiteRecoveryRecoveryPlan - - Id + Get-AzureSiteRecoveryJob + + Job - Id of the recovery plan + Specifies an Azure Site Recovery job object to get. + + ASRJob + + + + Get-AzureSiteRecoveryJob + + EndTime + + Specifies a end time as a DateTime object. This cmdlet gets jobs that starts before the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date. + + DateTime + + + StartTime + + Specifies a start time as a DateTime object. This cmdlet gets jobs that begin after the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date. + + DateTime + + + State + + Specifies an input state for an Azure Site Recovery job. This cmdlet gets jobs that match the state that this parameter specifies. + + string + + + TargetObjectId + + ID of the object on which Job was targeted to. string @@ -1235,10 +974,23 @@ Errors : {} + + EndTime + + Specifies a end time as a DateTime object. This cmdlet gets jobs that starts before the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date. + + + DateTime + + DateTime + + + + Id - Id of the recovery plan + Specifies the ID of a job to get. string @@ -1248,10 +1000,49 @@ Errors : {} - - Name + + Job - name of the recovery plan + Specifies an Azure Site Recovery job object to get. + + + ASRJob + + ASRJob + + + + + + StartTime + + Specifies a start time as a DateTime object. This cmdlet gets jobs that begin after the time that this parameter specifies. To obtain a DateTime object, use the Get-Date cmdlet. For more information, type Get-Help Get-Date. + + + DateTime + + DateTime + + + + + + State + + Specifies an input state for an Azure Site Recovery job. This cmdlet gets jobs that match the state that this parameter specifies. + + + string + + string + + + + + + TargetObjectId + + ID of the object on which Job was targeted to. string @@ -1319,11 +1110,61 @@ Errors : {} C:\PS> - Get-AzureSiteRecoveryRecoveryPlan + Get-AzureSiteRecoveryJob -Id d0b56c01-1fd7-411a-94e9-be717ac6601e - ID Name ServerId TargetServerId - -- ---- -------- -------------- - 71de8ebc-1e9a-4242-aec3-ee... ContosoPlan 4a94c4a9-c856-4577-afbd-36... 78facf56-b273-4941-82fd-cc... + Name : DeleteRecoveryPlan + ID : 1bb9fcbe-3bd6-4b3f-b77c-e4fb193f545a + ClientRequestId : 9a867466-f10e-4d62-9cca-a15fa7116035-2015-03-02 16:27:31Z + State : Succeeded + StateDescription : Completed + StartTime : 02-03-2015 16:27:33 +05:30 + EndTime : 02-03-2015 16:27:33 +05:30 + TargetObjectId : cfb445b7-fd14-4b5d-b9ac-5154e1415ef2 + TargetObjectType : RecoveryPlan + TargetObjectName : RPE2E + AllowedActions : {Cancel} + Tasks : {Delete a recovery plan task} + Errors : {} + + + Description + ----------- + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 2 -------------------------- + + + C:\PS> + + + Get-AzureSiteRecoveryJob -StartTime "02-03-2015 21:50:00" -EndTime "02-03-2015 22:00:00" + + Name : DeleteRecoveryPlan + ID : 1bb9fcbe-3bd6-4b3f-b77c-e4fb193f545a + ClientRequestId : 9a867466-f10e-4d62-9cca-a15fa7116035-2015-03-02 16:27:31Z + State : Succeeded + StateDescription : Completed + StartTime : 02-03-2015 16:27:33 +05:30 + EndTime : 02-03-2015 16:27:33 +05:30 + TargetObjectId : cfb445b7-fd14-4b5d-b9ac-5154e1415ef2 + TargetObjectType : RecoveryPlan + TargetObjectName : RPE2E + AllowedActions : {Cancel} + Tasks : {Delete a recovery plan task} + Errors : {} Description @@ -1350,298 +1191,46 @@ Errors : {} - - - - - - Get-AzureSiteRecoveryProtectionEntity - - - The Get-AzureSiteRecoveryProtectionEntity cmdlet gets protected objects in Microsoft Azure Site Recovery, such as virtual machines. - - - - - Get - AzureSiteRecoveryProtectionEntity - - - - Get the list of Protection Entities like "VMs" . A Protection Entity is an object which can be protected using Azure site Recovery - - - - - Get-AzureSiteRecoveryProtectionEntity - - ProtectionContainerId - - Id of the Protection Container - - string - - - - Get-AzureSiteRecoveryProtectionEntity - - Id - - Specifies the ID of a protection entity to get. - - string - - - ProtectionContainerId - - Id of the Protection Container - - string - - - - Get-AzureSiteRecoveryProtectionEntity - - Name - - Name of the Protection Entity - - string - - - ProtectionContainerId - - Id of the Protection Container - - string - - - - Get-AzureSiteRecoveryProtectionEntity - - ProtectionContainer - - Protection Container object - - ASRProtectionContainer - - - - Get-AzureSiteRecoveryProtectionEntity - - Id - - Specifies the ID of a protection entity to get. - - string - - - ProtectionContainer - - Protection Container object - - ASRProtectionContainer - - - - Get-AzureSiteRecoveryProtectionEntity - - Name - - Name of the Protection Entity - - string - - - ProtectionContainer - - Protection Container object - - ASRProtectionContainer - - - - - - - Id - - Specifies the ID of a protection entity to get. - - - string - - string - - - - - - Name - - Name of the Protection Entity - - - string - - string - - - - - - ProtectionContainer - - Protection Container object - - - ASRProtectionContainer - - ASRProtectionContainer - - - - - - ProtectionContainerId - - Id of the Protection Container - - - string - - string - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - - - C:\PS> - - -$PC = Get-AzureSiteRecoveryProtectionContainer; Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC - -ID : 43aaab46-1cb0-4c39-8077-9a091c3b05ce -ServerId : 4a94c4a9-c856-4577-afbd-367fe9b3ce9c -ProtectionContainerId : 4a94c4a9-c856-4577-afbd-367fe9b3ce9c_1c513d45-645d-4ed0-b9ae-e7b869a1f7fc -Name : testvm -Type : VirtualMachine -FabricObjectId : 506B3CAC-5758-49E2-98C4-E5B0512E4D8E -Protected : False -CanCommit : False -CanFailover : False -CanReverseReplicate : False -ActiveLocation : Primary -ProtectionStateDescription : Enabling protection -ReplicationHealth : -TestFailoverStateDescription : None -ReplicationProvider : HyperVReplica - - Description - ----------- - - - - - - - - - - - - - - - - - - - - - - - + - Import-AzureSiteRecoveryVaultSettingsFile + Get-AzureSiteRecoveryRecoveryPlan - Imports a Azure site Recovery Vault Settings file to able to connect to Azure site Recovery Vault + Get information of the Recovery Plan for current Azure Site Recovery Vault - Import - AzureSiteRecoveryVaultSettingsFile + Get + AzureSiteRecoveryRecoveryPlan - Imports a Azure site Recovery Vault Settings file to able to connect to Azure site Recovery Vault. The Vault settings file can be downloaded from Azure site recovery Vault by logging on the Azure portal + Get information of the Recovery Plan for current Azure Site Recovery Vault. A recovery plan gathers virtual machines in a group for the purposes of failover and recovery - Import-AzureSiteRecoveryVaultSettingsFile - - Path + Get-AzureSiteRecoveryRecoveryPlan + + + Get-AzureSiteRecoveryRecoveryPlan + + Name - Path to the Azure site Recovery Vault Settings file. This file can be downloaded from Azure Site Recovery Vault portal and stored locally + name of the recovery plan + + string + + + + Get-AzureSiteRecoveryRecoveryPlan + + Id + + Id of the recovery plan string @@ -1649,10 +1238,23 @@ ReplicationProvider : HyperVReplica - - Path + + Id - Path to the Azure site Recovery Vault Settings file. This file can be downloaded from Azure Site Recovery Vault portal and stored locally + Id of the recovery plan + + + string + + string + + + + + + Name + + name of the recovery plan string @@ -1720,13 +1322,11 @@ ReplicationProvider : HyperVReplica C:\PS> - Import-AzureSiteRecoveryVaultSettingsFile -Path "C:\Users\Contoso\Contosovault Monday, October 6, 2014.VaultCredentials" - - VERBOSE: Vault Settings File path: C:\Users\Contoso\Contosovault Monday, October 6, 2014.VaultCredentials + Get-AzureSiteRecoveryRecoveryPlan - ResourceName CloudServiceName - ------------ ---------------- - Contosovault RecoveryServices-6JP23WE3SKKOM5AFQG2YQAI22MNOWK52QDKWMUP... + ID Name ServerId TargetServerId + -- ---- -------- -------------- + 71de8ebc-1e9a-4242-aec3-ee... ContosoPlan 4a94c4a9-c856-4577-afbd-36... 78facf56-b273-4941-82fd-cc... Description @@ -1753,253 +1353,135 @@ ReplicationProvider : HyperVReplica - + - New-AzureSiteRecoveryRecoveryPlan + Get-AzureSiteRecoveryProtectionEntity - Adds a Recovery Plan in to a current Azure Site Recovery Vault + The Get-AzureSiteRecoveryProtectionEntity cmdlet gets protected objects in Microsoft Azure Site Recovery, such as virtual machines. - New - AzureSiteRecoveryRecoveryPlan + Get + AzureSiteRecoveryProtectionEntity - Adds a Recovery Plan in to a current Azure Site Recovery Vault. A recovery plan gathers virtual machines in a group for the purposes of failover and recovery. Use Get-AzureSiteRecoveryRecoveryPlanFile commandlet on an existing Recovery Plan to view the RecoveryPlan file and know its format. + Get the list of Protection Entities like "VMs" . A Protection Entity is an object which can be protected using Azure site Recovery - New-AzureSiteRecoveryRecoveryPlan + Get-AzureSiteRecoveryProtectionEntity - File + ProtectionContainerId - Recovery Plan file + Id of the Protection Container string - - WaitForCompletion + + + Get-AzureSiteRecoveryProtectionEntity + + Id - Waits till the operation completes + Specifies the ID of a protection entity to get. + + string + + + ProtectionContainerId + + Id of the Protection Container + string - - - - - File - - Recovery Plan file - - - string - - string - - - - - - WaitForCompletion - - Waits till the operation completes - - - SwitchParameter - - SwitchParameter - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - - - C:\PS> - - - New-AzureSiteRecoveryRecoveryPlan -File C:\Users\contoso\Desktop\RP.xml - - ID : 189283c7-7fd9-4010-8bf1-d2a2e4a46df4 - ClientRequestId : 6c56d96e-dfdd-4898-81cf-8562f51a8129-2014-34-06 15:34:23Z-P - State : NotStarted - StateDescription : NotStarted - StartTime : - EndTime : - AllowedActions : {} - Name : - Tasks : {} - Errors : {} - - - Description - ----------- - - - - - - - - - - - - - - - - - - - - - - - - - - - Remove-AzureSiteRecoveryRecoveryPlan - - - Remove a Recovery Plan from the current Azure Site Recovery Vault - - - - - Remove - AzureSiteRecoveryRecoveryPlan - - - - Remove a Recovery Plan from the current Azure Site Recovery Vault - - - - Remove-AzureSiteRecoveryRecoveryPlan + Get-AzureSiteRecoveryProtectionEntity - Id + Name - Id of the Recovery Plan + Name of the Protection Entity string - - Force + + ProtectionContainerId - Bypasses confirmation on passing + Id of the Protection Container + string - - WaitForCompletion + + + Get-AzureSiteRecoveryProtectionEntity + + ProtectionContainer - Waits till the operation completes + Protection Container object + ASRProtectionContainer - Remove-AzureSiteRecoveryRecoveryPlan + Get-AzureSiteRecoveryProtectionEntity + + Id + + Specifies the ID of a protection entity to get. + + string + - RecoveryPlan + ProtectionContainer - Recovery Plan object + Protection Container object - ASRRecoveryPlan + ASRProtectionContainer - - Force + + + Get-AzureSiteRecoveryProtectionEntity + + Name - Bypasses confirmation on passing + Name of the Protection Entity + string - - WaitForCompletion + + ProtectionContainer - Waits till the operation completes + Protection Container object + ASRProtectionContainer - - Force + + Id - Bypasses confirmation on passing + Specifies the ID of a protection entity to get. - SwitchParameter + string - SwitchParameter + string - Id + Name - Id of the Recovery Plan + Name of the Protection Entity string @@ -2010,27 +1492,27 @@ ReplicationProvider : HyperVReplica - RecoveryPlan + ProtectionContainer - Recovery Plan object + Protection Container object - ASRRecoveryPlan + ASRProtectionContainer - ASRRecoveryPlan + ASRProtectionContainer - - WaitForCompletion + + ProtectionContainerId - Waits till the operation completes + Id of the Protection Container - SwitchParameter + string - SwitchParameter + string @@ -2093,18 +1575,23 @@ ReplicationProvider : HyperVReplica C:\PS> - $Rp = Get-AzureSiteRecoveryRecoveryPlan; Remove-AzureSiteRecoveryRecoveryPlan -RecoveryPlan $Rp - - ID : 20329f92-9ed6-4529-8b74-d83309623248 - ClientRequestId : 6c967844-096f-4ca6-a166-55936fd6d61c-2014-36-06 15:36:40Z-P - State : NotStarted - StateDescription : NotStarted - StartTime : - EndTime : - AllowedActions : {} - Name : - Tasks : {} - Errors : {} + $PC = Get-AzureSiteRecoveryProtectionContainer; Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC + + ID : 43aaab46-1cb0-4c39-8077-9a091c3b05ce + ServerId : 4a94c4a9-c856-4577-afbd-367fe9b3ce9c + ProtectionContainerId : 4a94c4a9-c856-4577-afbd-367fe9b3ce9c_1c513d45-645d-4ed0-b9ae-e7b869a1f7fc + Name : testvm + Type : VirtualMachine + FabricObjectId : 506B3CAC-5758-49E2-98C4-E5B0512E4D8E + Protected : False + CanCommit : False + CanFailover : False + CanReverseReplicate : False + ActiveLocation : Primary + ProtectionStateDescription : Enabling protection + ReplicationHealth : + TestFailoverStateDescription : None + ReplicationProvider : HyperVReplica Description @@ -2131,54 +1618,44 @@ ReplicationProvider : HyperVReplica - + - Restart-AzureSiteRecoveryJob + Import-AzureSiteRecoveryVaultSettingsFile - Restarts the Operation in Azure Site Recovery + Imports a Azure site Recovery Vault Settings file to able to connect to Azure site Recovery Vault - Restart - AzureSiteRecoveryJob + Import + AzureSiteRecoveryVaultSettingsFile - Restarts the Operation in Azure Site Recovery . This cmdlet is allowed on failed and cancelled jobs . To know allowed actions on a job look for Allowed Actions in job object + Imports a Azure site Recovery Vault Settings file to able to connect to Azure site Recovery Vault. The Vault settings file can be downloaded from Azure site recovery Vault by logging on the Azure portal - Restart-AzureSiteRecoveryJob - - Id + Import-AzureSiteRecoveryVaultSettingsFile + + Path - Id of the Azure Site Recovery Job + Path to the Azure site Recovery Vault Settings file. This file can be downloaded from Azure Site Recovery Vault portal and stored locally string - - Restart-AzureSiteRecoveryJob - - Job - - - - ASRJob - - - - Id + + Path - Id of the Azure Site Recovery Job + Path to the Azure site Recovery Vault Settings file. This file can be downloaded from Azure Site Recovery Vault portal and stored locally string @@ -2188,19 +1665,6 @@ ReplicationProvider : HyperVReplica - - Job - - - - - ASRJob - - ASRJob - - - - @@ -2259,19 +1723,13 @@ ReplicationProvider : HyperVReplica C:\PS> - Restart-AzureSiteRecoveryJob -Id bbf0b839-9aaa-49e1-8354-601c9145966d + Import-AzureSiteRecoveryVaultSettingsFile -Path "C:\Users\Contoso\Contosovault Monday, October 6, 2014.VaultCredentials" - ID : bbf0b839-9aaa-49e1-8354-601c9145966d - ClientRequestId : ef42c8b0-640c-4442-960b-349f83d161a5-2014-24-06 14:24:04Z-P - State : Failed - StateDescription : Failed - StartTime : 10/6/2014 9:41:08 AM - EndTime : 10/6/2014 9:41:21 AM - AllowedActions : {Cancel, Restart} - Name : Enable protection - Tasks : {Prerequisites check for enabling protection , Identifying replication target, Enable replication, - Starting initial replication...} - Errors : {CreateProtectionTargetTask} + VERBOSE: Vault Settings File path: C:\Users\Contoso\Contosovault Monday, October 6, 2014.VaultCredentials + + ResourceName CloudServiceName + ------------ ---------------- + Contosovault RecoveryServices-6JP23WE3SKKOM5AFQG2YQAI22MNOWK52QDKWMUP... Description @@ -2298,81 +1756,50 @@ ReplicationProvider : HyperVReplica - + - Resume-AzureSiteRecoveryJob + New-AzureSiteRecoveryRecoveryPlan - Resumes a suspended job in Azure Site Recovery + Adds a Recovery Plan in to a current Azure Site Recovery Vault - Resume - AzureSiteRecoveryJob + New + AzureSiteRecoveryRecoveryPlan - Resumes the Operation in Azure Site Recovery . This cmdlet is allowed on suspended jobs . To know allowed actions on a job look for Allowed Actions in job object + Adds a Recovery Plan in to a current Azure Site Recovery Vault. A recovery plan gathers virtual machines in a group for the purposes of failover and recovery. Use Get-AzureSiteRecoveryRecoveryPlanFile commandlet on an existing Recovery Plan to view the RecoveryPlan file and know its format. - Resume-AzureSiteRecoveryJob + New-AzureSiteRecoveryRecoveryPlan - Id - - ID of the Azure Site Recovery Job - - string - - - Comments + File - User comment can be specified while resuming the Job + Recovery Plan file string - - - Resume-AzureSiteRecoveryJob - - Job - - ASR Job object - - ASRJob - - Comments + WaitForCompletion - User comment can be specified while resuming the Job + Waits till the operation completes - string - - Comments - - User comment can be specified while resuming the Job - - - string - - string - - - - - Id + File - ID of the Azure Site Recovery Job + Recovery Plan file string @@ -2382,15 +1809,15 @@ ReplicationProvider : HyperVReplica - - Job + + WaitForCompletion - ASR Job object + Waits till the operation completes - ASRJob + SwitchParameter - ASRJob + SwitchParameter @@ -2453,18 +1880,17 @@ ReplicationProvider : HyperVReplica C:\PS> - $jobs= Get-AzureSiteRecoveryJob; Resume-AzureSiteRecoveryJob -Job $jobs + New-AzureSiteRecoveryRecoveryPlan -File C:\Users\contoso\Desktop\RP.xml - ID : d16397fb-cdf1-4972-b677-c333f3c557b4 - ClientRequestId : 32ace403-0916-4967-83a1-529176bd6e88-2014-49-06 15:49:24Z-P - State : Suspended - StateDescription : WaitingForManualAction - StartTime : 10/6/2014 10:19:28 AM - EndTime : 10/6/2014 10:19:31 AM - AllowedActions : {Cancel, RestartTestFailoverCleanup} - Name : Test failover - Tasks : {Recovery plan preflight checks, Create test environment, All groups failover: Pre steps (1), - Recovery plan failover...} + ID : 189283c7-7fd9-4010-8bf1-d2a2e4a46df4 + ClientRequestId : 6c56d96e-dfdd-4898-81cf-8562f51a8129-2014-34-06 15:34:23Z-P + State : NotStarted + StateDescription : NotStarted + StartTime : + EndTime : + AllowedActions : {} + Name : + Tasks : {} Errors : {} @@ -2492,430 +1918,41 @@ ReplicationProvider : HyperVReplica - - - - - - Set-AzureSiteRecoveryProtectionEntity - - - Sets the Protection on a protection entity for Azure Site Recovery - - - - - Set - AzureSiteRecoveryProtectionEntity - - - - Sets the Protection on a protection entity for Azure Site Recovery. This is async cmdlet which will only start the operation and return the job object. - - - - - Set-AzureSiteRecoveryProtectionEntity - - Id - - ID of the protection entity - - string - - - ProtectedContainerId - - ID of the Protected Container - - string - - - Protection - - set 'Enable' to enable protection and 'Disable' to disable protection - - string - - - Force - - Bypasses confirmation on passing - - - - WaitForCompletion - - Waits till the operation completes - - - - - Set-AzureSiteRecoveryProtectionEntity - - Protection - - set 'Enable' to enable protection and 'Disable' to disable protection - - string - - - ProtectionEntity - - Protection Entity object - - ASRProtectionEntity - - - Force - - Bypasses confirmation on passing - - - - OS - - OS type e.g. Windows or Linux - - string - - - OSDiskName - - Name of the disk containing operating system. - - string - - - ProtectionProfile - - Protection profile to be used to enable protection. - - ASRProtectionProfile - - - WaitForCompletion - - Waits till the operation completes - - - - - - - - Id - - ID of the protection entity - - - string - - string - - - - - - Protection - - set 'Enable' to enable protection and 'Disable' to disable protection - - - string - - string - - - - - - ProtectedContainerId - - ID of the Protected Container - - - string - - string - - - - - - ProtectionEntity - - Protection Entity object - - - ASRProtectionEntity - - ASRProtectionEntity - - - - - - WaitForCompletion - - Waits till the operation completes - - - SwitchParameter - - SwitchParameter - - - - - - Force - - Bypasses confirmation on passing - - - SwitchParameter - - SwitchParameter - - - - - - ProtectionProfile - - Protection profile to be used to enable protection. - - - ASRProtectionProfile - - ASRProtectionProfile - - - - - - OS - - OS type e.g. Windows or Linux - - - string - - string - - - - - - OSDiskName - - Name of the disk containing operating system. - - - string - - string - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - - - C:\PS> - - -$PC = Get-AzureSiteRecoveryProtectionContainer -Name "Cloud1" -$PE = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC -Name "VM1" -Set-AzureSiteRecoveryProtectionEntity -ProtectionEntity $PE -Protection Enable -ProtectionProfile $PC.AvailableProtectionProfiles[0] -OS Windows - -Name : EnableDr -ID : 7d980e67-ad8c-45bc-99a6-6d8ca0a4a689 -ClientRequestId : d45eb812-de16-4bff-b4f4-a34ffa4afc5d-2015-02-18 15:31:12Z-P -State : InProgress -StateDescription : InProgress -StartTime : 2/18/2015 3:31:16 PM -EndTime : -TargetObjectId : 52fa9f2d-57d4-4036-a46f-b112d2d6ae72 -TargetObjectType : ProtectionEntity -TargetObjectName : TestVM2 -AllowedActions : -Tasks : {Prerequisites check for enabling protection, Identifying the replication target, Enablereplication, Starting initial replication...} -Errors : {} - - - Description - ----------- - The OS Parameter is mandatory when an on-premise Hyper-v site is protected to azure - - - - - - - - - - - - - - - - - - - - - - - + - Start-AzureSiteRecoveryTestFailoverJob + Remove-AzureSiteRecoveryRecoveryPlan - The Start-AzureSiteRecoveryTestFailoverJob cmdlet starts the test failover for a protection entity or for a recovery plan in Microsoft Azure Site Recovery. Check whether the job succeeds by using the Get-AzureSiteRecoveryJob cmdlet. + Remove a Recovery Plan from the current Azure Site Recovery Vault - Start - AzureSiteRecoveryTestFailoverJob + Remove + AzureSiteRecoveryRecoveryPlan - Start the Test Failover operation for a Protection Entity or Recovery Plan under Azure Site Recovery. This will start the test failover job and success of test failover can be tracked state of the Job using Get-AzureSiteRecoveryJob + Remove a Recovery Plan from the current Azure Site Recovery Vault - Start-AzureSiteRecoveryTestFailoverJob - - Direction - - Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary - - string - - - ProtectionContainerId - - Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies. - - string - - - ProtectionEntityId - - Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies. - - string - - - NetworkType - - Specifies the network type to be used for test failover. - - string - - - WaitForCompletion - - Waits till the operation completes - - - - - Start-AzureSiteRecoveryTestFailoverJob - - Direction - - Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary - - string - - - LogicalNetworkId - - Specifies the ID of the logical network. - - string - - - ProtectionContainerId - - Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies. - - string - + Remove-AzureSiteRecoveryRecoveryPlan - ProtectionEntityId + Id - Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies. + Id of the Recovery Plan string - NetworkType + Force - Specifies the network type to be used for test failover. + Bypasses confirmation on passing - string WaitForCompletion @@ -2925,41 +1962,19 @@ Errors : {} - Start-AzureSiteRecoveryTestFailoverJob - - Direction - - Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary - - string - - - Network - - Specifies the network object to be used for test failover. - - ASRNetwork - - - NetworkType - - Specifies the network type to be used for test failover. - - string - - - ProtectionContainerId + Remove-AzureSiteRecoveryRecoveryPlan + + RecoveryPlan - Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies. + Recovery Plan object - string + ASRRecoveryPlan - ProtectionEntityId + Force - Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies. + Bypasses confirmation on passing - string WaitForCompletion @@ -2968,43 +1983,1180 @@ Errors : {} - - Start-AzureSiteRecoveryTestFailoverJob - - Direction - - Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary - - string - - - ProtectionContainerId - - Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies. - - string - - - ProtectionEntityId - - Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies. - - string - - - VmNetworkId - - Specifies the ID of the virtual machine network. - - string - - - NetworkType - - Specifies the network type to be used for test failover. - - string - + + + + + Force + + Bypasses confirmation on passing + + + SwitchParameter + + SwitchParameter + + + + + + Id + + Id of the Recovery Plan + + + string + + string + + + + + + RecoveryPlan + + Recovery Plan object + + + ASRRecoveryPlan + + ASRRecoveryPlan + + + + + + WaitForCompletion + + Waits till the operation completes + + + SwitchParameter + + SwitchParameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + + + $Rp = Get-AzureSiteRecoveryRecoveryPlan; Remove-AzureSiteRecoveryRecoveryPlan -RecoveryPlan $Rp + + ID : 20329f92-9ed6-4529-8b74-d83309623248 + ClientRequestId : 6c967844-096f-4ca6-a166-55936fd6d61c-2014-36-06 15:36:40Z-P + State : NotStarted + StateDescription : NotStarted + StartTime : + EndTime : + AllowedActions : {} + Name : + Tasks : {} + Errors : {} + + + Description + ----------- + + + + + + + + + + + + + + + + + + + + + + + + + + + Restart-AzureSiteRecoveryJob + + + Restarts the Operation in Azure Site Recovery + + + + + Restart + AzureSiteRecoveryJob + + + + Restarts the Operation in Azure Site Recovery . This cmdlet is allowed on failed and cancelled jobs . To know allowed actions on a job look for Allowed Actions in job object + + + + + Restart-AzureSiteRecoveryJob + + Id + + Id of the Azure Site Recovery Job + + string + + + + Restart-AzureSiteRecoveryJob + + Job + + + + ASRJob + + + + + + + Id + + Id of the Azure Site Recovery Job + + + string + + string + + + + + + Job + + + + + ASRJob + + ASRJob + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + + + Restart-AzureSiteRecoveryJob -Id bbf0b839-9aaa-49e1-8354-601c9145966d + + ID : bbf0b839-9aaa-49e1-8354-601c9145966d + ClientRequestId : ef42c8b0-640c-4442-960b-349f83d161a5-2014-24-06 14:24:04Z-P + State : Failed + StateDescription : Failed + StartTime : 10/6/2014 9:41:08 AM + EndTime : 10/6/2014 9:41:21 AM + AllowedActions : {Cancel, Restart} + Name : Enable protection + Tasks : {Prerequisites check for enabling protection , Identifying replication target, Enable replication, + Starting initial replication...} + Errors : {CreateProtectionTargetTask} + + + Description + ----------- + + + + + + + + + + + + + + + + + + + + + + + + + + + Resume-AzureSiteRecoveryJob + + + Resumes a suspended job in Azure Site Recovery + + + + + Resume + AzureSiteRecoveryJob + + + + Resumes the Operation in Azure Site Recovery . This cmdlet is allowed on suspended jobs . To know allowed actions on a job look for Allowed Actions in job object + + + + + Resume-AzureSiteRecoveryJob + + Id + + ID of the Azure Site Recovery Job + + string + + + Comments + + User comment can be specified while resuming the Job + + string + + + + Resume-AzureSiteRecoveryJob + + Job + + ASR Job object + + ASRJob + + + Comments + + User comment can be specified while resuming the Job + + string + + + + + + + Comments + + User comment can be specified while resuming the Job + + + string + + string + + + + + + Id + + ID of the Azure Site Recovery Job + + + string + + string + + + + + + Job + + ASR Job object + + + ASRJob + + ASRJob + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + + + $jobs= Get-AzureSiteRecoveryJob; Resume-AzureSiteRecoveryJob -Job $jobs + + ID : d16397fb-cdf1-4972-b677-c333f3c557b4 + ClientRequestId : 32ace403-0916-4967-83a1-529176bd6e88-2014-49-06 15:49:24Z-P + State : Suspended + StateDescription : WaitingForManualAction + StartTime : 10/6/2014 10:19:28 AM + EndTime : 10/6/2014 10:19:31 AM + AllowedActions : {Cancel, RestartTestFailoverCleanup} + Name : Test failover + Tasks : {Recovery plan preflight checks, Create test environment, All groups failover: Pre steps (1), + Recovery plan failover...} + Errors : {} + + + Description + ----------- + + + + + + + + + + + + + + + + + + + + + + + + + + + Set-AzureSiteRecoveryProtectionEntity + + + Sets the Protection on a protection entity for Azure Site Recovery + + + + + Set + AzureSiteRecoveryProtectionEntity + + + + Sets the Protection on a protection entity for Azure Site Recovery. This is async cmdlet which will only start the operation and return the job object. + + + + + Set-AzureSiteRecoveryProtectionEntity + + Id + + ID of the protection entity + + string + + + ProtectedContainerId + + ID of the Protected Container + + string + + + Protection + + set 'Enable' to enable protection and 'Disable' to disable protection + + string + + + Force + + Bypasses confirmation on passing + + + + WaitForCompletion + + Waits till the operation completes + + + + + Set-AzureSiteRecoveryProtectionEntity + + Protection + + set 'Enable' to enable protection and 'Disable' to disable protection + + string + + + ProtectionEntity + + Protection Entity object + + ASRProtectionEntity + + + Force + + Bypasses confirmation on passing + + + + OS + + OS type e.g. Windows or Linux + + string + + + OSDiskName + + Name of the disk containing operating system. + + string + + + ProtectionProfile + + Protection profile to be used to enable protection. + + ASRProtectionProfile + + + WaitForCompletion + + Waits till the operation completes + + + + + + + + Id + + ID of the protection entity + + + string + + string + + + + + + Protection + + set 'Enable' to enable protection and 'Disable' to disable protection + + + string + + string + + + + + + ProtectedContainerId + + ID of the Protected Container + + + string + + string + + + + + + ProtectionEntity + + Protection Entity object + + + ASRProtectionEntity + + ASRProtectionEntity + + + + + + WaitForCompletion + + Waits till the operation completes + + + SwitchParameter + + SwitchParameter + + + + + + Force + + Bypasses confirmation on passing + + + SwitchParameter + + SwitchParameter + + + + + + ProtectionProfile + + Protection profile to be used to enable protection. + + + ASRProtectionProfile + + ASRProtectionProfile + + + + + + OS + + OS type e.g. Windows or Linux + + + string + + string + + + + + + OSDiskName + + Name of the disk containing operating system. + + + string + + string + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + + + $PC = Get-AzureSiteRecoveryProtectionContainer -Name "Cloud1" + $PE = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC -Name "VM1" + Set-AzureSiteRecoveryProtectionEntity -ProtectionEntity $PE -Protection Enable -ProtectionProfile $PC.AvailableProtectionProfiles[0] -OS Windows + + Name : EnableDr + ID : 7d980e67-ad8c-45bc-99a6-6d8ca0a4a689 + ClientRequestId : d45eb812-de16-4bff-b4f4-a34ffa4afc5d-2015-02-18 15:31:12Z-P + State : InProgress + StateDescription : InProgress + StartTime : 2/18/2015 3:31:16 PM + EndTime : + TargetObjectId : 52fa9f2d-57d4-4036-a46f-b112d2d6ae72 + TargetObjectType : ProtectionEntity + TargetObjectName : TestVM2 + AllowedActions : + Tasks : {Prerequisites check for enabling protection, Identifying the replication target, Enablereplication, Starting initial replication...} + Errors : {} + + + Description + ----------- + The OS Parameter is mandatory when an on-premise Hyper-v site is protected to azure + + + + + + + + + + + + + + + + + + + + + + + + + + Start-AzureSiteRecoveryTestFailoverJob + + + The Start-AzureSiteRecoveryTestFailoverJob cmdlet starts the test failover for a protection entity or for a recovery plan in Microsoft Azure Site Recovery. Check whether the job succeeds by using the Get-AzureSiteRecoveryJob cmdlet. + + + + + Start + AzureSiteRecoveryTestFailoverJob + + + + Start the Test Failover operation for a Protection Entity or Recovery Plan under Azure Site Recovery. This will start the test failover job and success of test failover can be tracked state of the Job using Get-AzureSiteRecoveryJob + + + + + Start-AzureSiteRecoveryTestFailoverJob + + Direction + + Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary + + string + + + ProtectionContainerId + + Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies. + + string + + + ProtectionEntityId + + Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies. + + string + + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + + + NetworkType + + Specifies the network type to be used for test failover. + + string + + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + + + WaitForCompletion + + Waits till the operation completes + + + + + Start-AzureSiteRecoveryTestFailoverJob + + Direction + + Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary + + string + + + LogicalNetworkId + + Specifies the ID of the logical network. + + string + + + ProtectionContainerId + + Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies. + + string + + + ProtectionEntityId + + Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies. + + string + + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + + + NetworkType + + Specifies the network type to be used for test failover. + + string + + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + + + WaitForCompletion + + Waits till the operation completes + + + + + Start-AzureSiteRecoveryTestFailoverJob + + Direction + + Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary + + string + + + Network + + Specifies the network object to be used for test failover. + + ASRNetwork + + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + + + NetworkType + + Specifies the network type to be used for test failover. + + string + + + ProtectionContainerId + + Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies. + + string + + + ProtectionEntityId + + Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies. + + string + + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + + + WaitForCompletion + + Waits till the operation completes + + + + + Start-AzureSiteRecoveryTestFailoverJob + + Direction + + Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary + + string + + + ProtectionContainerId + + Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies. + + string + + + ProtectionEntityId + + Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies. + + string + + + VmNetworkId + + Specifies the ID of the virtual machine network. + + string + + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + + + NetworkType + + Specifies the network type to be used for test failover. + + string + + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + + + WaitForCompletion + + Waits till the operation completes + + + + + Start-AzureSiteRecoveryTestFailoverJob + + Direction + + Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary + + string + + + ProtectionEntity + + Protection Entity object + + ASRProtectionEntity + + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + + + NetworkType + + Specifies the network type to be used for test failover. + + string + + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + + + WaitForCompletion + + Waits till the operation completes + + + + + Start-AzureSiteRecoveryTestFailoverJob + + Direction + + Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary + + string + + + LogicalNetworkId + + Specifies the ID of the logical network. + + string + + + ProtectionEntity + + Protection Entity object + + ASRProtectionEntity + + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + + + NetworkType + + Specifies the network type to be used for test failover. + + string + + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + WaitForCompletion @@ -3021,17 +3173,279 @@ Errors : {} string - + + Network + + Specifies the network object to be used for test failover. + + ASRNetwork + + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + + + NetworkType + + Specifies the network type to be used for test failover. + + string + + + ProtectionEntity + + Protection Entity object + + ASRProtectionEntity + + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + + + WaitForCompletion + + Waits till the operation completes + + + + + Start-AzureSiteRecoveryTestFailoverJob + + Direction + + Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary + + string + + ProtectionEntity Protection Entity object ASRProtectionEntity + + VmNetworkId + + Specifies the ID of the virtual machine network. + + string + + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + + + NetworkType + + Specifies the network type to be used for test failover. + + string + + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + + + WaitForCompletion + + Waits till the operation completes + + + + + Start-AzureSiteRecoveryTestFailoverJob + + Direction + + Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary + + string + + + RpId + + Specifies the ID of a recovery plan for which to start the job. + + string + + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + + + NetworkType + + Specifies the network type to be used for test failover. + + string + + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + + + WaitForCompletion + + Waits till the operation completes + + + + + Start-AzureSiteRecoveryTestFailoverJob + + Direction + + Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary + + string + + + VmNetworkId + + Specifies the ID of the virtual machine network. + + string + + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + + + LogicalNetworkId + + Specifies the ID of the logical network. + + string + + + NetworkType + + Specifies the network type to be used for test failover. + + string + + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + + + WaitForCompletion + + Waits till the operation completes + + + + + Start-AzureSiteRecoveryTestFailoverJob + + Direction + + Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary + + string + + + Network + + Specifies the network object to be used for test failover. + + ASRNetwork + + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + + + NetworkType + + Specifies the network type to be used for test failover. + + string + + + RpId + + Specifies the ID of a recovery plan for which to start the job. + + string + + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + + + WaitForCompletion + + Waits till the operation completes + + + + + Start-AzureSiteRecoveryTestFailoverJob + + Direction + + Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary + + string + + + VmNetworkId + + Specifies the ID of the virtual machine network. + + string + + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + + + NetworkType + + Specifies the network type to be used for test failover. + + string + - NetworkType + SecondaryEncryptionKeyFile - Specifies the network type to be used for test failover. + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. string @@ -3051,19 +3465,19 @@ Errors : {} string - - LogicalNetworkId + + RecoveryPlan - Specifies the ID of the logical network. + Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies. - string + ASRRecoveryPlan - - ProtectionEntity + + EncryptionKeyFile - Protection Entity object + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. - ASRProtectionEntity + string NetworkType @@ -3072,6 +3486,13 @@ Errors : {} string + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + WaitForCompletion @@ -3088,12 +3509,26 @@ Errors : {} string - - Network + + RecoveryPlan - Specifies the network object to be used for test failover. + Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies. - ASRNetwork + ASRRecoveryPlan + + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + + + LogicalNetworkId + + Specifies the ID of the logical network. + + string NetworkType @@ -3103,11 +3538,11 @@ Errors : {} string - ProtectionEntity + SecondaryEncryptionKeyFile - Protection Entity object + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. - ASRProtectionEntity + string WaitForCompletion @@ -3126,16 +3561,16 @@ Errors : {} string - ProtectionEntity + Network - Protection Entity object + Specifies the network object to be used for test failover. - ASRProtectionEntity + ASRNetwork - - VmNetworkId + + EncryptionKeyFile - Specifies the ID of the virtual machine network. + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. string @@ -3146,6 +3581,20 @@ Errors : {} string + + RecoveryPlan + + Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies. + + ASRRecoveryPlan + + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + WaitForCompletion @@ -3162,10 +3611,17 @@ Errors : {} string - - RpId + + RecoveryPlan - Specifies the ID of a recovery plan for which to start the job. + Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies. + + ASRRecoveryPlan + + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. string @@ -3176,6 +3632,13 @@ Errors : {} string + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + WaitForCompletion @@ -3183,8 +3646,342 @@ Errors : {} + + + + + Direction + + Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary + + + string + + string + + + + + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + + string + + string + + + + + + LogicalNetworkId + + Specifies the ID of the logical network. + + + string + + string + + + + + + Network + + Specifies the network object to be used for test failover. + + + ASRNetwork + + ASRNetwork + + + + + + NetworkType + + Specifies the network type to be used for test failover. + + + string + + string + + + + + + ProtectionContainerId + + Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies. + + + string + + string + + + + + + ProtectionEntity + + Protection Entity object + + + ASRProtectionEntity + + ASRProtectionEntity + + + + + + ProtectionEntityId + + Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies. + + + string + + string + + + + + + RecoveryPlan + + Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies. + + + ASRRecoveryPlan + + ASRRecoveryPlan + + + + + + RpId + + Specifies the ID of a recovery plan for which to start the job. + + + string + + string + + + + + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + + string + + string + + + + + + VmNetworkId + + Specifies the ID of the virtual machine network. + + + string + + string + + + + + + WaitForCompletion + + Waits till the operation completes + + + SwitchParameter + + SwitchParameter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + + + $PC = Get-AzureSiteRecoveryProtectionContainer; $PE = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC; Start-AzureSiteRecoveryTestFailoverJob -ProtectionEntity $PE -Direction PrimaryToRecovery + + + ID : c38eecdc-731c-405b-a61c-08db99aae2fe + ClientRequestId : 32ace403-0916-4967-83a1-529176bd6e88-2014-49-06 15:49:24Z-P + State : NotStarted + StateDescription : NotStarted + StartTime : + EndTime : + AllowedActions : {} + Name : + Tasks : {} + Errors : {} + + + Description + ----------- + + + + + + + + + + + + + + + + -------------------------- EXAMPLE 2 -------------------------- + + + C:\PS> + + + $RP = Get-AzureSiteRecoveryRecoveryPlan -Name "RP1" + Start-AzureSiteRecoveryTestFailoverJob -RecoveryPlan $RP -Direction PrimaryToRecovery + + Name : + ID : 4a991243-a97f-4617-97be-a6e0dc99a2ff + ClientRequestId : 0ae1226f-b68d-4131-b2e8-17bb4c19fa29-2015-02-17 14:35:46Z-P + State : NotStarted + StateDescription : NotStarted + StartTime : + EndTime : + TargetObjectId : + TargetObjectType : + TargetObjectName : + AllowedActions : + Tasks : {} + Errors : {} + + + Description + ----------- + + + + + + + + + + + + + + + + + + + + + + + + + + + Start-AzureSiteRecoveryUnplannedFailoverJob + + + + The Start-AzureSiteRecoveryUnplannedFailoverJob cmdlet starts the unplanned failover for a protectioned entity or for a recovery plan in Microsoft Azure Site Recovery. + Check whether the job succeeds by using the Get-AzureSiteRecoveryJob cmdlet. + + + + + + Start + AzureSiteRecoveryUnplannedFailoverJob + + + + Start the Unplanned Failover operation for a Protection Entity or Recovery Plan under Azure Site Recovery. This will start the failover job and success of failover can be tracked state of the Job using Get-AzureSiteRecoveryJob + + + - Start-AzureSiteRecoveryTestFailoverJob + Start-AzureSiteRecoveryUnplannedFailoverJob Direction @@ -3193,90 +3990,36 @@ Errors : {} string - VmNetworkId - - Specifies the ID of the virtual machine network. - - string - - - LogicalNetworkId - - Specifies the ID of the logical network. - - string - - - NetworkType - - Specifies the network type to be used for test failover. - - string - - - WaitForCompletion - - Waits till the operation completes - - - - - Start-AzureSiteRecoveryTestFailoverJob - - Direction + ProtectionContainerId - Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary + Id of the Protection Container string - Network - - Specifies the network object to be used for test failover. - - ASRNetwork - - - NetworkType + ProtectionEntityId - Specifies the network type to be used for test failover. + Id of the Protection Entity string - RpId + EncryptionKeyFile - Specifies the ID of a recovery plan for which to start the job. + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. string - WaitForCompletion - - Waits till the operation completes - - - - - Start-AzureSiteRecoveryTestFailoverJob - - Direction - - Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary - - string - - - VmNetworkId + PerformSourceSideActions - Specifies the ID of the virtual machine network. + Its used for indicating whether can do source site operations. - string - NetworkType + SecondaryEncryptionKeyFile - Specifies the network type to be used for test failover. + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. string @@ -3288,7 +4031,7 @@ Errors : {} - Start-AzureSiteRecoveryTestFailoverJob + Start-AzureSiteRecoveryUnplannedFailoverJob Direction @@ -3297,53 +4040,29 @@ Errors : {} string - RecoveryPlan - - Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies. - - ASRRecoveryPlan - - - NetworkType + ProtectionEntity - Specifies the network type to be used for test failover. + Protection Entity object - string + ASRProtectionEntity - WaitForCompletion - - Waits till the operation completes - - - - - Start-AzureSiteRecoveryTestFailoverJob - - Direction + EncryptionKeyFile - Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. string - - RecoveryPlan - - Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies. - - ASRRecoveryPlan - - LogicalNetworkId + PerformSourceSideActions - Specifies the ID of the logical network. + Its used for indicating whether can do source site operations. - string - NetworkType + SecondaryEncryptionKeyFile - Specifies the network type to be used for test failover. + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. string @@ -3355,7 +4074,7 @@ Errors : {} - Start-AzureSiteRecoveryTestFailoverJob + Start-AzureSiteRecoveryUnplannedFailoverJob Direction @@ -3364,25 +4083,31 @@ Errors : {} string - Network + RpId - Specifies the network object to be used for test failover. + Id of the Recovery Plan - ASRNetwork + string - NetworkType + EncryptionKeyFile - Specifies the network type to be used for test failover. + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. string - RecoveryPlan + PerformSourceSideActions - Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies. + Its used for indicating whether can do source site operations. - ASRRecoveryPlan + + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string WaitForCompletion @@ -3392,7 +4117,7 @@ Errors : {} - Start-AzureSiteRecoveryTestFailoverJob + Start-AzureSiteRecoveryUnplannedFailoverJob Direction @@ -3403,14 +4128,27 @@ Errors : {} RecoveryPlan - Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies. + Recovery Plan object ASRRecoveryPlan - NetworkType + EncryptionKeyFile - Specifies the network type to be used for test failover. + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + + + PerformSourceSideActions + + Its used for indicating whether can do source site operations. + + + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. string @@ -3438,9 +4176,9 @@ Errors : {} - LogicalNetworkId + EncryptionKeyFile - Specifies the ID of the logical network. + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. string @@ -3451,9 +4189,9 @@ Errors : {} - WaitForCompletion + PerformSourceSideActions - Waits till the operation completes + Its used for indicating whether can do source site operations. SwitchParameter @@ -3463,23 +4201,10 @@ Errors : {} - - RecoveryPlan - - Specifies an ASRRecoveryPlan object for which to start the job. To obtain a recovery plan object, use the Get-AzureSiteRecoveryRecoveryPlan cmdlet. This cmdlet starts a test failover for the recovery plan that this parameter specifies. - - - ASRRecoveryPlan - - ASRRecoveryPlan - - - - - - RpId + + ProtectionContainerId - Specifies the ID of a recovery plan for which to start the job. + Id of the Protection Container string @@ -3503,9 +4228,9 @@ Errors : {} - ProtectionContainerId + ProtectionEntityId - Specifies the ID of a protected container. This cmdlet starts the job for a protected virtual machine that belongs to the container that this cmdlet specifies. + Id of the Protection Entity string @@ -3515,23 +4240,23 @@ Errors : {} - - ProtectionEntityId + + RecoveryPlan - Specifies an ASRProtectionEntity object for which to start the job. To obtain a protection entity object, use the Get-AzureSiteRecoveryProtectionEntity cmdlet. This cmdlet starts a test failover for the protected entity that this parameter specifies. + Recovery Plan object - string + ASRRecoveryPlan - string + ASRRecoveryPlan - VmNetworkId + RpId - Specifies the ID of the virtual machine network. + Id of the Recovery Plan string @@ -3542,9 +4267,9 @@ Errors : {} - NetworkType + SecondaryEncryptionKeyFile - Specifies the network type to be used for test failover. + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. string @@ -3554,15 +4279,15 @@ Errors : {} - - Network + + WaitForCompletion - Specifies the network object to be used for test failover. + Waits till the operation completes - ASRNetwork + SwitchParameter - ASRNetwork + SwitchParameter @@ -3625,8 +4350,7 @@ Errors : {} C:\PS> - $PC = Get-AzureSiteRecoveryProtectionContainer; $PE = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC; Start-AzureSiteRecoveryTestFailoverJob -ProtectionEntity $PE -Direction PrimaryToRecovery - + $PC = Get-AzureSiteRecoveryProtectionContainer; $PE = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC; Start-AzureSiteRecoveryUnplannedFailoverJob -ProtectionEntity $PE -Direction PrimaryToRecovery ID : c38eecdc-731c-405b-a61c-08db99aae2fe ClientRequestId : 32ace403-0916-4967-83a1-529176bd6e88-2014-49-06 15:49:24Z-P @@ -3654,47 +4378,6 @@ Errors : {} - - - - -------------------------- EXAMPLE 2 -------------------------- - - - C:\PS> - - - $RP = Get-AzureSiteRecoveryRecoveryPlan -Name "RP1" - Start-AzureSiteRecoveryTestFailoverJob -RecoveryPlan $RP -Direction PrimaryToRecovery - - Name : - ID : 4a991243-a97f-4617-97be-a6e0dc99a2ff - ClientRequestId : 0ae1226f-b68d-4131-b2e8-17bb4c19fa29-2015-02-17 14:35:46Z-P - State : NotStarted - StateDescription : NotStarted - StartTime : - EndTime : - TargetObjectId : - TargetObjectType : - TargetObjectName : - AllowedActions : - Tasks : {} - Errors : {} - - - Description - ----------- - - - - - - - - - - - - @@ -3705,357 +4388,7 @@ Errors : {} - - - - - - Start-AzureSiteRecoveryUnplannedFailoverJob - - - The Start-AzureSiteRecoveryUnplannedFailoverJob cmdlet starts the unplanned failover for a protectioned entity or for a recovery plan in Microsoft Azure Site Recovery. -Check whether the job succeeds by using the Get-AzureSiteRecoveryJob cmdlet. - - - - - - Start - AzureSiteRecoveryUnplannedFailoverJob - - - - Start the Unplanned Failover operation for a Protection Entity or Recovery Plan under Azure Site Recovery. This will start the failover job and success of failover can be tracked state of the Job using Get-AzureSiteRecoveryJob - - - - - Start-AzureSiteRecoveryUnplannedFailoverJob - - Direction - - Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary - - string - - - ProtectionContainerId - - Id of the Protection Container - - string - - - ProtectionEntityId - - Id of the Protection Entity - - string - - - PerformSourceSideActions - - Its used for indicating whether can do source site operations. - - - - WaitForCompletion - - Waits till the operation completes - - - - - Start-AzureSiteRecoveryUnplannedFailoverJob - - Direction - - Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary - - string - - - ProtectionEntity - - Protection Entity object - - ASRProtectionEntity - - - PerformSourceSideActions - - Its used for indicating whether can do source site operations. - - - - WaitForCompletion - - Waits till the operation completes - - - - - Start-AzureSiteRecoveryUnplannedFailoverJob - - Direction - - Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary - - string - - - RpId - - Id of the Recovery Plan - - string - - - PerformSourceSideActions - - Its used for indicating whether can do source site operations. - - - - WaitForCompletion - - Waits till the operation completes - - - - - Start-AzureSiteRecoveryUnplannedFailoverJob - - Direction - - Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary - - string - - - RecoveryPlan - - Recovery Plan object - - ASRRecoveryPlan - - - PerformSourceSideActions - - Its used for indicating whether can do source site operations. - - - - WaitForCompletion - - Waits till the operation completes - - - - - - - - Direction - - Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary - - - string - - string - - - - - - WaitForCompletion - - Waits till the operation completes - - - SwitchParameter - - SwitchParameter - - - - - - RecoveryPlan - - Recovery Plan object - - - ASRRecoveryPlan - - ASRRecoveryPlan - - - - - - RpId - - Id of the Recovery Plan - - - string - - string - - - - - - ProtectionEntity - - Protection Entity object - - - ASRProtectionEntity - - ASRProtectionEntity - - - - - - ProtectionEntityId - - Id of the Protection Entity - - - string - - string - - - - - - ProtectionContainerId - - Id of the Protection Container - - - string - - string - - - - - - PerformSourceSideActions - - Its used for indicating whether can do source site operations. - - - SwitchParameter - - SwitchParameter - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - - - C:\PS> - - -$PC = Get-AzureSiteRecoveryProtectionContainer; $PE = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC; Start-AzureSiteRecoveryUnplannedFailoverJob -ProtectionEntity $PE -Direction PrimaryToRecovery - -ID : c38eecdc-731c-405b-a61c-08db99aae2fe -ClientRequestId : 32ace403-0916-4967-83a1-529176bd6e88-2014-49-06 15:49:24Z-P -State : NotStarted -StateDescription : NotStarted -StartTime : -EndTime : -AllowedActions : {} -Name : -Tasks : {} -Errors : {} - - Description - ----------- - - - - - - - - - - - - - - - - - - - - - - - @@ -4085,6 +4418,13 @@ Errors : {} ASRRecoveryPlan + + Direction + + Direction of the commit, either PrimaryToRecovery or RecoveryToPrimary + + string + WaitForCompletion @@ -4101,6 +4441,13 @@ Errors : {} string + + Direction + + Direction of the commit, either PrimaryToRecovery or RecoveryToPrimary + + string + WaitForCompletion @@ -4117,6 +4464,13 @@ Errors : {} ASRProtectionEntity + + Direction + + Direction of the commit, either PrimaryToRecovery or RecoveryToPrimary + + string + WaitForCompletion @@ -4140,6 +4494,13 @@ Errors : {} string + + Direction + + Direction of the commit, either PrimaryToRecovery or RecoveryToPrimary + + string + WaitForCompletion @@ -4150,6 +4511,19 @@ Errors : {} + + Direction + + Direction of the commit, either PrimaryToRecovery or RecoveryToPrimary + + + string + + string + + + + ProtectionContainerId @@ -4176,15 +4550,15 @@ Errors : {} - - WaitForCompletion + + ProtectionEntityId - Waits for Completion + Id of the Protection Entity - SwitchParameter + string - SwitchParameter + string @@ -4215,15 +4589,15 @@ Errors : {} - - ProtectionEntityId + + WaitForCompletion - Id of the Protection Entity + Waits for Completion - string + SwitchParameter - string + SwitchParameter @@ -4326,7 +4700,6 @@ Errors : {} - @@ -4363,6 +4736,13 @@ Errors : {} ASRRecoveryPlan + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + Optimize @@ -4376,6 +4756,13 @@ Errors : {} string + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + WaitForCompletion @@ -4399,6 +4786,13 @@ Errors : {} string + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + Optimize @@ -4412,6 +4806,13 @@ Errors : {} string + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + WaitForCompletion @@ -4435,6 +4836,13 @@ Errors : {} ASRProtectionEntity + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + Optimize @@ -4448,6 +4856,13 @@ Errors : {} string + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + WaitForCompletion @@ -4478,6 +4893,13 @@ Errors : {} string + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + string + Optimize @@ -4491,6 +4913,13 @@ Errors : {} string + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + string + WaitForCompletion @@ -4514,6 +4943,19 @@ Errors : {} + + EncryptionKeyFile + + Path to Encryption Key. This is used only if the Protection Container which hosts the Protection Entity, is configured to encrypt the VM's data in azure storage. + + + string + + string + + + + Optimize @@ -4598,6 +5040,19 @@ Errors : {} + + SecondaryEncryptionKeyFile + + Path to Rollover Encryption Key. This param is used along with parameter EncryptionKeyFile, when the Key roll over operation is in progress for the site. + + + string + + string + + + + WaitForCompletion @@ -4863,7 +5318,6 @@ Errors : {} - @@ -5015,7 +5469,6 @@ Errors : {} - @@ -5326,7 +5779,6 @@ Errors : {} - @@ -5491,490 +5943,497 @@ Errors : {} - - - New-AzureSiteRecoveryProtectionProfileObject - + + + New-AzureSiteRecoveryProtectionProfileObject + + + Creates a Protection profile object . This is an in memory object to be further supplied for Protection Profile related operations. + + + + + New + AzureSiteRecoveryProtectionProfileObject + + - Creates a Protection profile object . This is an in memory object to be further supplied for Protection Profile related operations. + Creates a Protection profile object in memory. This command can be used to return a protection profile object to be further supplied for Protection Profile related operations. - - - - New - AzureSiteRecoveryProtectionProfileObject - - - - Creates a Protection profile object in memory. This command can be used to return a protection profile object to be further supplied for Protection Profile related operations. - - - - - New-AzureSiteRecoveryProtectionProfileObject - - ReplicationFrequencyInSeconds - - Replication frequency interval in seconds. -As of now, only three possible values supported. -30 seconds, 300 seconds, 900 seconds. - - string - - - ReplicationProvider - - Type of Replication Provider either HyperVReplica or HyperVReplicaAzure. - - string - + + + + New-AzureSiteRecoveryProtectionProfileObject + + ReplicationFrequencyInSeconds + + + Replication frequency interval in seconds. + As of now, only three possible values supported. + 30 seconds, 300 seconds, 900 seconds. + + + string + + + ReplicationProvider + + Type of Replication Provider either HyperVReplica or HyperVReplicaAzure. + + string + + + AllowReplicaDeletion + + Switch parameter indicating whether replica entity deletion is to be enabled. + + + + ApplicationConsistentSnapshotFrequencyInHours + + Frequency of Application Consistent Snapshot in hours. + + int + + + Authentication + + Type of authentication to be used. Possible values are Certificate and Kerberos. + + string + + + CompressionEnabled + + Switch parameter indicating whether compression is to be Enabled. + + + + Force + + Specify this to bypass the confirm action and take the default (Y). + + + + Name + + Can be used to provide a name to the protection profile settings object that is to be created. + + string + + + RecoveryPoints + + Number of hours to retain Recovery points. + + int + + + ReplicationMethod + + Replication Method either Online - over the network or Offline. + + string + + + ReplicationPort + + Port on which the replication would take place. + + int + + + ReplicationStartTime + + Replication Start Time. It should be within the next 24 hours of the start of the job. + + TimeSpan + + + + New-AzureSiteRecoveryProtectionProfileObject + + RecoveryAzureStorageAccount + + Azure Storage account name on which the Azure replica entity would be located. + + string + + + RecoveryAzureSubscription + + Azure Subscription ID corresponding to the storage account on which the Azure replica entity would be located. + + string + + + ReplicationFrequencyInSeconds + + + Replication frequency interval in seconds. + As of now, only three possible values supported. + 30 seconds, 300 seconds, 900 seconds. + + + string + + + ReplicationProvider + + Type of Replication Provider either HyperVReplica or HyperVReplicaAzure. + + string + + + ApplicationConsistentSnapshotFrequencyInHours + + Frequency of Application Consistent Snapshot in hours. + + int + + + Force + + Specify this to bypass the confirm action and take the default (Y). + + + + Name + + Can be used to provide a name to the protection profile settings object that is to be created. + + string + + + RecoveryPoints + + Number of hours to retain Recovery points. + + int + + + ReplicationStartTime + + Replication Start Time. It should be within the next 24 hours of the start of the job. + + TimeSpan + + + + + AllowReplicaDeletion Switch parameter indicating whether replica entity deletion is to be enabled. + + SwitchParameter + + SwitchParameter + + + ApplicationConsistentSnapshotFrequencyInHours Frequency of Application Consistent Snapshot in hours. + int + + int + + + Authentication Type of authentication to be used. Possible values are Certificate and Kerberos. + string + + string + + + CompressionEnabled Switch parameter indicating whether compression is to be Enabled. + + SwitchParameter + + SwitchParameter + + + Force Specify this to bypass the confirm action and take the default (Y). + + SwitchParameter + + SwitchParameter + + + Name Can be used to provide a name to the protection profile settings object that is to be created. + string + + string + + + - - RecoveryPoints - - Number of hours to retain Recovery points. - - int - - - ReplicationMethod - - Replication Method either Online - over the network or Offline. - - string - - - ReplicationPort - - Port on which the replication would take place. - - int - - - ReplicationStartTime - - Replication Start Time. It should be within the next 24 hours of the start of the job. - - TimeSpan - - - - New-AzureSiteRecoveryProtectionProfileObject RecoveryAzureStorageAccount Azure Storage account name on which the Azure replica entity would be located. + string + + string + + + RecoveryAzureSubscription Azure Subscription ID corresponding to the storage account on which the Azure replica entity would be located. + string + + string + + + - - ReplicationFrequencyInSeconds + + RecoveryPoints - Replication frequency interval in seconds. -As of now, only three possible values supported. -30 seconds, 300 seconds, 900 seconds. + Number of hours to retain Recovery points. + - string + int + + int + + + - ReplicationProvider + ReplicationFrequencyInSeconds - Type of Replication Provider either HyperVReplica or HyperVReplicaAzure. + + Replication frequency interval in seconds. + As of now, only three possible values supported. + 30 seconds, 300 seconds, 900 seconds. + + string + + string + + + - ApplicationConsistentSnapshotFrequencyInHours + ReplicationMethod - Frequency of Application Consistent Snapshot in hours. + Replication Method either Online - over the network or Offline. + - int + string + + string + + + - Force + ReplicationPort - Specify this to bypass the confirm action and take the default (Y). + Port on which the replication would take place. + + int + + int + + + - - Name + + ReplicationProvider - Can be used to provide a name to the protection profile settings object that is to be created. + Type of Replication Provider either HyperVReplica or HyperVReplicaAzure. + string - - - RecoveryPoints - - Number of hours to retain Recovery points. - - int + + string + + + ReplicationStartTime Replication Start Time. It should be within the next 24 hours of the start of the job. + TimeSpan + + TimeSpan + + + - - - - - - AllowReplicaDeletion - - Switch parameter indicating whether replica entity deletion is to be enabled. - - - SwitchParameter - - SwitchParameter - - - - - - ApplicationConsistentSnapshotFrequencyInHours - - Frequency of Application Consistent Snapshot in hours. - - - int - - int - - - - - - Authentication - - Type of authentication to be used. Possible values are Certificate and Kerberos. - - - string - - string - - - - - - CompressionEnabled - - Switch parameter indicating whether compression is to be Enabled. - - - SwitchParameter - - SwitchParameter - - - - - - Force - - Specify this to bypass the confirm action and take the default (Y). - - - SwitchParameter - - SwitchParameter - - - - - - Name - - Can be used to provide a name to the protection profile settings object that is to be created. - - - string - - string - - - - - - RecoveryAzureStorageAccount - - Azure Storage account name on which the Azure replica entity would be located. - - - string - - string - - - - - - RecoveryAzureSubscription - - Azure Subscription ID corresponding to the storage account on which the Azure replica entity would be located. - - - string - - string - - - - - - RecoveryPoints - - Number of hours to retain Recovery points. - - - int - - int - - - - - - ReplicationFrequencyInSeconds - - Replication frequency interval in seconds. -As of now, only three possible values supported. -30 seconds, 300 seconds, 900 seconds. - - - string - - string - - - - - - ReplicationMethod - - Replication Method either Online - over the network or Offline. - - - string - - string - - - - - - ReplicationPort - - Port on which the replication would take place. - - - int - - int - - - - - - ReplicationProvider - - Type of Replication Provider either HyperVReplica or HyperVReplicaAzure. - - - string - - string - - - - - - ReplicationStartTime - - Replication Start Time. It should be within the next 24 hours of the start of the job. - - - TimeSpan - - TimeSpan - - - - - - - - - - - - - - - - - - - - - - - - - ASRProtectionProfile - - - - + + + + + + + + + + + + + + + + + + + + + ASRProtectionProfile + + + + + + + + + + + + + + + + + + - - + - - - - - - - - - - - - - - - - - - - - - - - - -------------------------- EXAMPLE 1 -------------------------- - - - C:\PS> - + + + + + + + + + + + -------------------------- EXAMPLE 1 -------------------------- + + + C:\PS> + -New-AzureSiteRecoveryProtectionProfileObject -ReplicationProvider HyperVReplica -ReplicationMethod Online -ReplicationFrequencyInSeconds 30 -RecoveryPoints 2 -ApplicationConsistentSnapshotFrequencyInHours 1 -CompressionEnabled -ReplicationPort 8085 -ReplicationStartTime 1 -AllowReplicaDeletion + New-AzureSiteRecoveryProtectionProfileObject -ReplicationProvider HyperVReplica -ReplicationMethod Online -ReplicationFrequencyInSeconds 30 -RecoveryPoints 2 -ApplicationConsistentSnapshotFrequencyInHours 1 -CompressionEnabled -ReplicationPort 8085 -ReplicationStartTime 1 -AllowReplicaDeletion Name : ID : ReplicationProvider : HyperVReplica HyperVReplicaProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServices.Models.Common.HyperVReplicaProviderS - ettings - HyperVReplicaAzureProviderSettingsObject : - - Description - ----------- - - - - - + ettings + HyperVReplicaAzureProviderSettingsObject : + + + Description + ----------- + + + + + - - - - - - - - - - -------------------------- EXAMPLE 2 -------------------------- - - - C:\PS> - + + + + + + + + + + -------------------------- EXAMPLE 2 -------------------------- + + + C:\PS> + -New-AzureSiteRecoveryProtectionProfileObject -Name protProfile -ReplicationProvider HyperVReplicaAzure -RecoveryAzureSubscription cb53d0c3-bd59-4721-89bc-06916a9147ef -RecoveryAzureStorageAccount test -ReplicationFrequencyInSeconds 30 -RecoveryPoints 1 -Force - -Name : protProfile -ID : -ReplicationProvider : HyperVReplicaAzure -HyperVReplicaProviderSettingsObject : -HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServices.Models.Common.HyperVReplicaAzureProv - iderSettings - - Description - ----------- - - - - - + New-AzureSiteRecoveryProtectionProfileObject -Name protProfile -ReplicationProvider HyperVReplicaAzure -RecoveryAzureSubscription cb53d0c3-bd59-4721-89bc-06916a9147ef -RecoveryAzureStorageAccount test -ReplicationFrequencyInSeconds 30 -RecoveryPoints 1 -Force + + Name : protProfile + ID : + ReplicationProvider : HyperVReplicaAzure + HyperVReplicaProviderSettingsObject : + HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServices.Models.Common.HyperVReplicaAzureProv + iderSettings + + + Description + ----------- + + + + + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - @@ -6529,7 +6988,6 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic - @@ -6731,7 +7189,6 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic - @@ -6880,7 +7337,6 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic - @@ -8401,7 +8857,6 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic - @@ -8781,51 +9236,50 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic - - New-AzureSiteRecoveryVault + New-AzureSiteRecoverySite - Creates a new Azure Site Recovery Vault + Creates an Azure Site Recovery Site New - AzureSiteRecoveryVault + AzureSiteRecoverySite - Creates a new Azure Site Recovery Vault + Creates Azure Site Recovery Site - New-AzureSiteRecoveryVault + New-AzureSiteRecoverySite - Location + Name - Geo Location Name + Name of the site to be created string - - Name + + Vault - Vault Name for which the cred file to be generated + Vault Object for which the site has to be created - string + ASRVault - Location + Name - Geo Location Name + Name of the site to be created string @@ -8835,15 +9289,15 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic - - Name + + Vault - Vault Name for which the cred file to be generated + Vault Object for which the site has to be created - string + ASRVault - string + ASRVault @@ -8906,11 +9360,22 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic C:\PS> - New-AzureSiteRecoveryVault -Name testVault -Location "West US" + New-AzureSiteRecoverySite -Name testSite - Response - -------- - Vault has been created + ActivityId : 8d5b9957-3a1d-4881-bbee-eaaa704564a7-2015-02-02 04:34:11Z-P + AllowedActions : {} + DisplayName : + EndTime : + Errors : {} + StartTime : + State : NotStarted + StateDescription : NotStarted + TargetObjectId : + TargetObjectName : + TargetObjectType : ProtectionEntity + Tasks : {} + Name : + ID : 127f77e6-b7d4-421d-8679-a98319622b99 Description @@ -8938,7 +9403,6 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic - @@ -9075,7 +9539,6 @@ HyperVReplicaAzureProviderSettingsObject : Microsoft.Azure.Portal.RecoveryServic - diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Microsoft.Azure.Commands.RecoveryServices.format.ps1xml b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Microsoft.Azure.Commands.RecoveryServices.format.ps1xml new file mode 100644 index 000000000000..52c56b569b7f --- /dev/null +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Microsoft.Azure.Commands.RecoveryServices.format.ps1xml @@ -0,0 +1,33 @@ + + + + + + Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionProfile + + Microsoft.Azure.Commands.RecoveryServices.SiteRecovery.ASRProtectionProfile + + + + + + + Name + + + ReplicationProvider + + + HyperVReplicaProviderSettingsObject + + + HyperVReplicaAzureProviderSettingsObject + + + + + + + + + \ No newline at end of file diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesClient.cs index cba792731dec..a5f372868f32 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesClient.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesClient.cs @@ -169,7 +169,7 @@ public string GenerateAgentAuthenticationHeader(string clientRequestId) DateTime currentDateTime = DateTime.Now; currentDateTime = currentDateTime.AddHours(-1); cikTokenDetails.NotBeforeTimestamp = TimeZoneInfo.ConvertTimeToUtc(currentDateTime); - cikTokenDetails.NotAfterTimestamp = cikTokenDetails.NotBeforeTimestamp.AddHours(6); + cikTokenDetails.NotAfterTimestamp = cikTokenDetails.NotBeforeTimestamp.AddDays(7); cikTokenDetails.ClientRequestId = clientRequestId; cikTokenDetails.Version = new Version(1, 2); cikTokenDetails.PropertyBag = new Dictionary(); diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesPEClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesPEClient.cs index 387007e0d1e3..34ea1f10b604 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesPEClient.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesPEClient.cs @@ -59,17 +59,17 @@ public ProtectionEntityResponse GetAzureSiteRecoveryProtectionEntity( /// Sets protection on Protection entity. /// /// Protection Container ID - /// Virtual Machine ID + /// Virtual Machine ID or Replication group Id /// Enable protection input. /// Job response public JobResponse EnableProtection( string protectionContainerId, - string virtualMachineId, + string protectionEntityId, EnableProtectionInput input) { return this.GetSiteRecoveryClient().ProtectionEntity.EnableProtection( protectionContainerId, - virtualMachineId, + protectionEntityId, input, this.GetRequestHeaders()); } @@ -78,15 +78,18 @@ public JobResponse EnableProtection( /// Sets protection on Protection entity. /// /// Protection Container ID - /// Virtual Machine ID + /// Virtual Machine ID or Replication group Id + /// Disable protection input. /// Job response - public JobResponse DisbleProtection( + public JobResponse DisableProtection( string protectionContainerId, - string virtualMachineId) + string protectionEntityId, + DisableProtectionInput input) { return this.GetSiteRecoveryClient().ProtectionEntity.DisableProtection( protectionContainerId, - virtualMachineId, + protectionEntityId, + input, this.GetRequestHeaders()); } diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesProtectionProfileClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesProtectionProfileClient.cs index bbc4befa0a78..9a3b52f39556 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesProtectionProfileClient.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesProtectionProfileClient.cs @@ -78,15 +78,15 @@ public JobResponse StartCreateAndAssociateAzureSiteRecoveryProtectionProfileJob( /// Deletes and Dissociates Azure Site Recovery Protection Profile. /// /// Protection Profile ID - /// Protection Profile Association Input + /// Protection Profile Association Input /// Job response public JobResponse StartDeleteAndDissociateAzureSiteRecoveryProtectionProfileJob( string protectionProfileId, - ProtectionProfileAssociationInput protectionProfileAssociationInput) + CreateAndAssociateProtectionProfileInput createAndAssociateProtectionProfileInput) { return this.GetSiteRecoveryClient().ProtectionProfile.DissociateAndDelete( protectionProfileId, - protectionProfileAssociationInput, + createAndAssociateProtectionProfileInput, this.GetRequestHeaders()); } } diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesServerClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesServerClient.cs index e18e94614222..2b58d3010838 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesServerClient.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesServerClient.cs @@ -26,10 +26,11 @@ public partial class PSRecoveryServicesClient /// /// Gets Azure Site Recovery Servers. /// + /// Boolean indicating if the request should be signed ACIK /// Server list response - public ServerListResponse GetAzureSiteRecoveryServer() + public ServerListResponse GetAzureSiteRecoveryServer(bool shouldSignRequest = true) { - return this.GetSiteRecoveryClient().Servers.List(this.GetRequestHeaders()); + return this.GetSiteRecoveryClient().Servers.List(this.GetRequestHeaders(shouldSignRequest)); } /// diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesSiteClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesSiteClient.cs index 56fe947c8cba..d1fab161cba3 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesSiteClient.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesSiteClient.cs @@ -12,6 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- +using System; using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery; using Microsoft.Azure.Portal.RecoveryServices.Models.Common; using Microsoft.WindowsAzure.Management.SiteRecovery; @@ -74,5 +75,45 @@ public JobResponse CreateAzureSiteRecoverySite(string siteName, string siteType return this.GetSiteRecoveryClient().Sites.Create(input, this.GetRequestHeaders(false)); } + + /// + /// Method to delete a Site + /// + /// name of the site + /// vault object + /// job object for the creation. + public JobResponse DeleteAzureSiteRecoverySite(string siteName, ASRVault vault = null) + { + if (vault != null) + { + Utilities.UpdateVaultSettings(new ASRVaultCreds() + { + CloudServiceName = vault.CloudServiceName, + ResourceName = vault.Name + }); + } + + string siteID = null; + SiteListResponse response = this.GetAzureSiteRecoverySites(vault); + foreach (var site in response.Sites) + { + if (siteName.Equals(site.Name, StringComparison.OrdinalIgnoreCase)) + { + siteID = site.ID; + break; + } + } + + if (string.IsNullOrEmpty(siteID)) + { + // Site does not exist + throw new InvalidOperationException( + string.Format( + Properties.Resources.SiteDetailsNotValid, + siteName)); + } + + return this.GetSiteRecoveryClient().Sites.Delete(siteID, this.GetRequestHeaders(false)); + } } } diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesStoragePoolMappingClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesStoragePoolMappingClient.cs new file mode 100644 index 000000000000..c04ded887d20 --- /dev/null +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesStoragePoolMappingClient.cs @@ -0,0 +1,104 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using Microsoft.WindowsAzure; +using Microsoft.WindowsAzure.Management.SiteRecovery; +using Microsoft.WindowsAzure.Management.SiteRecovery.Models; + +namespace Microsoft.Azure.Commands.RecoveryServices +{ + /// + /// Recovery services convenience client. + /// + public partial class PSRecoveryServicesClient + { + /// + /// Gets Azure Site Recovery Storage pool mappings. + /// + /// Primary server ID + /// Recovery server ID + /// Storage pool mapping list response + public StoragePoolMappingListResponse GetAzureSiteRecoveryStoragePoolMappings( + string primaryServerId, + string recoveryServerId) + { + return this.GetSiteRecoveryClient() + .StoragePoolMappings + .List(primaryServerId, recoveryServerId, this.GetRequestHeaders()); + } + + /// + /// Create Azure Site Recovery Storage pool mapping. + /// + /// Primary server Id + /// Primary array Id + /// Primary storage pool Id + /// Recovery server Id + /// Recovery array Id + /// Recovery storage pool Id + /// Job response + public JobResponse NewAzureSiteRecoveryStoragePoolMapping( + string primaryServerId, + string primaryArrayId, + string primaryStoragePoolId, + string recoveryServerId, + string recoveryArrayId, + string recoveryStoragePoolId) + { + StoragePoolMappingInput parameters = new StoragePoolMappingInput(); + parameters.PrimaryServerId = primaryServerId; + parameters.PrimaryArrayId = primaryArrayId; + parameters.PrimaryStoragePoolId = primaryStoragePoolId; + parameters.RecoveryServerId = recoveryServerId; + parameters.RecoveryArrayId = recoveryArrayId; + parameters.RecoveryStoragePoolId = recoveryStoragePoolId; + + return this.GetSiteRecoveryClient() + .StoragePoolMappings + .Create(parameters, this.GetRequestHeaders()); + } + + /// + /// Delete Azure Site Recovery Storage pool mapping. + /// + /// Primary server Id + /// Primary array Id + /// Primary storage pool Id + /// Recovery server Id + /// Recovery array Id + /// Recovery storage pool Id + /// Job response + public JobResponse RemoveAzureSiteRecoveryStoragePoolMapping( + string primaryServerId, + string primaryArrayId, + string primaryStoragePoolId, + string recoveryServerId, + string recoveryArrayId, + string recoveryStoragePoolId) + { + StoragePoolMappingInput parameters = new StoragePoolMappingInput(); + parameters.PrimaryServerId = primaryServerId; + parameters.PrimaryArrayId = primaryArrayId; + parameters.PrimaryStoragePoolId = primaryStoragePoolId; + parameters.RecoveryServerId = recoveryServerId; + parameters.RecoveryArrayId = recoveryArrayId; + parameters.RecoveryStoragePoolId = recoveryStoragePoolId; + + return this.GetSiteRecoveryClient() + .StoragePoolMappings + .Delete(parameters, this.GetRequestHeaders()); + } + } +} \ No newline at end of file diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVMClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVMClient.cs index 08e4fed90959..683bd48efa28 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVMClient.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVMClient.cs @@ -57,7 +57,7 @@ public VirtualMachineResponse GetAzureSiteRecoveryVirtualMachine( public JobResponse UpdateVmProperties( string protectionContainerId, string virtualMachineId, - UpdateVmPropertiesInput updateVmPropertiesInput) + VMProperties updateVmPropertiesInput) { return this.GetSiteRecoveryClient().Vm.UpdateVmProperties( protectionContainerId, diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVaultClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVaultClient.cs index 44c18450ac02..c3105f4840f0 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVaultClient.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVaultClient.cs @@ -33,5 +33,16 @@ public RecoveryServicesOperationStatusResponse CreateVault(string cloudServiceNa { return this.GetRecoveryServicesClient.Vaults.Create(cloudServiceName, vaultName, vaultCreateInput); } + + /// + /// Method to delete Azure Site Recovery Vault + /// + /// name of the cloud service + /// name of the vault + /// Operation response object. + public AzureOperationResponse DeleteVault(string cloudServiceName, string vaultName) + { + return this.GetRecoveryServicesClient.Vaults.Delete(cloudServiceName, vaultName); + } } } diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs index 82e9046ea72d..64e1ebf23e04 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs @@ -317,6 +317,42 @@ internal static string RemoveRPWhatIfMessage { } } + /// + /// Looks up a localized string similar to Are you sure you want to remove Site {0}. + /// + internal static string RemoveSiteWarning { + get { + return ResourceManager.GetString("RemoveSiteWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removes Site. + /// + internal static string RemoveSiteWhatIfMessage { + get { + return ResourceManager.GetString("RemoveSiteWhatIfMessage", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Are you sure you want to remove Vault {0}. + /// + internal static string RemoveVaultWarning { + get { + return ResourceManager.GetString("RemoveVaultWarning", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Removes Vault. + /// + internal static string RemoveVaultWhatIfMessage { + get { + return ResourceManager.GetString("RemoveVaultWhatIfMessage", resourceCulture); + } + } + /// /// Looks up a localized string similar to Replication Start Time span value cannot be greater then 24 hours.. /// @@ -344,6 +380,15 @@ internal static string ServerNotFound { } } + /// + /// Looks up a localized string similar to Site name {0} is not valid. Please try again with the correct site details.. + /// + internal static string SiteDetailsNotValid { + get { + return ResourceManager.GetString("SiteDetailsNotValid", resourceCulture); + } + } + /// /// Looks up a localized string similar to Please enter the storage account name details in the protection profile.. /// @@ -400,6 +445,15 @@ internal static string ValidationUnsuccessfulWarning { } } + /// + /// Looks up a localized string similar to Vault {0} cannot be deleted as it contains registered servers. Unregister them and then retry the operation.. + /// + internal static string VaultCannotBeDeleted { + get { + return ResourceManager.GetString("VaultCannotBeDeleted", resourceCulture); + } + } + /// /// Looks up a localized string similar to Vault has been created. /// @@ -409,6 +463,15 @@ internal static string VaultCreationSuccessMessage { } } + /// + /// Looks up a localized string similar to Vault has been deleted. + /// + internal static string VaultDeletionSuccessMessage { + get { + return ResourceManager.GetString("VaultDeletionSuccessMessage", resourceCulture); + } + } + /// /// Looks up a localized string similar to Vault {0} is not associated with the given subscription.. /// diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx index 3d362f7f9f51..ba9fb4723d6d 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx @@ -256,4 +256,25 @@ Please provide a storage account with the same location as that of the vault. The Subscription or Storage account couldn’t be validated. For failovers to be successful, the Subscription should belong to your account, the Storage account to the Subscription and Storage account location must be the same as location of your Vault. + + Are you sure you want to remove Site {0} + + + Removes Site + + + Are you sure you want to remove Vault {0} + + + Removes Vault + + + Site name {0} is not valid. Please try again with the correct site details. + + + Vault has been deleted + + + Vault {0} cannot be deleted as it contains registered servers. Unregister them and then retry the operation. + \ No newline at end of file diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/CreateAzureSiteRecoveryProtectionProfileObject.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/CreateAzureSiteRecoveryProtectionProfileObject.cs index f8e28474a5a9..7ea12e459864 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/CreateAzureSiteRecoveryProtectionProfileObject.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/CreateAzureSiteRecoveryProtectionProfileObject.cs @@ -49,10 +49,12 @@ public class CreateAzureSiteRecoveryProtectionProfileObject : RecoveryServicesCm /// [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise, Mandatory = true)] [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterpriseSan, Mandatory = true)] [ValidateNotNullOrEmpty] [ValidateSet( Constants.HyperVReplica, - Constants.HyperVReplicaAzure)] + Constants.HyperVReplicaAzure, + Constants.San)] public string ReplicationProvider { get; set; } /// @@ -149,12 +151,46 @@ public class CreateAzureSiteRecoveryProtectionProfileObject : RecoveryServicesCm [DefaultValue(false)] public SwitchParameter AllowReplicaDeletion { get; set; } + /// + /// Gets or sets the primary cloud id of the Protection Profile. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterpriseSan)] + [ValidateNotNullOrEmpty] + public string PrimaryContainerId { get; set; } + + /// + /// Gets or sets the recovery cloud id of the Protection Profile. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterpriseSan)] + [ValidateNotNullOrEmpty] + public string RecoveryContainerId { get; set; } + + /// + /// Gets or sets the primary array id of the Protection Profile. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterpriseSan)] + [ValidateNotNullOrEmpty] + public string PrimaryArrayId { get; set; } + + /// + /// Gets or sets the recovery array id of the Protection Profile. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterpriseSan)] + [ValidateNotNullOrEmpty] + public string RecoveryArrayId { get; set; } + /// /// Gets or sets switch parameter. On passing, command does not ask for confirmation. /// [Parameter(Mandatory = false)] public SwitchParameter Force { get; set; } + /// + /// Gets or sets a value indicating - should the VM's data in azure storage be encrypted? + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure)] + [DefaultValue(false)] + public SwitchParameter EncryptStoredData { get; set; } #endregion Parameters /// @@ -172,6 +208,9 @@ public override void ExecuteCmdlet() case ASRParameterSets.EnterpriseToAzure: this.EnterpriseToAzureProtectionProfileObject(); break; + case ASRParameterSets.EnterpriseToEnterpriseSan: + this.EnterpriseToEnterpriseSanProtectionProfileObject(); + break; } } catch (Exception exception) @@ -180,16 +219,6 @@ public override void ExecuteCmdlet() } } - /// - /// Handles interrupts. - /// - protected override void StopProcessing() - { - // Ctrl + C and etc - base.StopProcessing(); - this.StopProcessingFlag = true; - } - /// /// Creates an E2A Protection Profile Object /// @@ -260,8 +289,7 @@ private void ProceedToCreateProtectionProfileObject() { RecoveryAzureSubscription = this.RecoveryAzureSubscription, RecoveryAzureStorageAccountName = this.RecoveryAzureStorageAccount, - //// Currently Data Encryption is not supported. - EncryptStoredData = false, + EncryptStoredData = this.EncryptStoredData, ReplicationFrequencyInSeconds = replicationFrequencyInSeconds, RecoveryPoints = this.RecoveryPoints, ApplicationConsistentSnapshotFrequencyInHours = this.ApplicationConsistentSnapshotFrequencyInHours, @@ -311,5 +339,43 @@ private void EnterpriseToEnterpriseProtectionProfileObject() this.WriteObject(protectionProfile); } + + /// + /// Creates an E2E San Protection Profile object + /// + private void EnterpriseToEnterpriseSanProtectionProfileObject() + { + if (string.Compare(this.ReplicationProvider, Constants.San, StringComparison.OrdinalIgnoreCase) != 0) + { + throw new InvalidOperationException( + string.Format( + Properties.Resources.IncorrectReplicationProvider, + this.ReplicationProvider)); + } + + string primaryCloudId = string.Empty; + string recoveryCloudId = string.Empty; + + Utilities.GetCloudIdFromContainerId(this.PrimaryContainerId, out primaryCloudId); + Utilities.GetCloudIdFromContainerId(this.RecoveryContainerId, out recoveryCloudId); + + ASRProtectionProfile protectionProfile = new ASRProtectionProfile() + { + // In case of SAN we don't have a protection profile associated yet. So we are giving a dummy ID now. + ID = this.PrimaryContainerId, + ReplicationProvider = this.ReplicationProvider, + HyperVReplicaAzureProviderSettingsObject = null, + HyperVReplicaProviderSettingsObject = null, + SanProviderSettingsObject = new SanProviderSettings() + { + CloudId = primaryCloudId, + RemoteCloudId = recoveryCloudId, + ArrayUniqueId = this.PrimaryArrayId, + RemoteArrayUniqueId = this.RecoveryArrayId + } + }; + + this.WriteObject(protectionProfile); + } } } diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryRecoveryPlanFile.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryRecoveryPlanFile.cs index 2e854cc91e8e..571c5dfa0331 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryRecoveryPlanFile.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryRecoveryPlanFile.cs @@ -14,6 +14,7 @@ using System; using System.Collections.Generic; +using System.IO; using System.Management.Automation; using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery; using Microsoft.WindowsAzure.Management.SiteRecovery.Models; @@ -79,7 +80,12 @@ public override void ExecuteCmdlet() /// private void GetRecoveryPlanFile() { - RecoveryPlanXmlOuput recoveryPlanXmlOuput = + if (Directory.Exists(this.Path)) + { + throw new ArgumentException("The input path is a directory. Please provide file path. Check the examples of the commandlet", "Path"); + } + + RecoveryPlanXmlOuput recoveryPlanXmlOuput = RecoveryServicesClient.GetAzureSiteRecoveryRecoveryPlanFile(this.Id); System.IO.File.WriteAllText(this.Path, recoveryPlanXmlOuput.RecoveryPlanXml); } diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryStoragePoolMapping.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryStoragePoolMapping.cs new file mode 100644 index 000000000000..54cb565b1186 --- /dev/null +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryStoragePoolMapping.cs @@ -0,0 +1,77 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery; +using Microsoft.WindowsAzure; +using Microsoft.WindowsAzure.Management.SiteRecovery.Models; + +namespace Microsoft.Azure.Commands.RecoveryServices +{ + /// + /// Retrieves Azure Site Recovery Storage pool mappings. + /// + [Cmdlet(VerbsCommon.Get, "AzureSiteRecoveryStoragePoolMapping")] + [OutputType(typeof(IEnumerable))] + public class GetAzureSiteRecoveryStoragePoolMapping : RecoveryServicesCmdletBase + { + #region Parameters + /// + /// Gets or sets Primary Server object. + /// + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public ASRServer PrimaryServer { get; set; } + + /// + /// Gets or sets Recovery Server object. + /// + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public ASRServer RecoveryServer { get; set; } + + #endregion Parameters + + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + try + { + StoragePoolMappingListResponse storagePoolMappingListResponse = + RecoveryServicesClient + .GetAzureSiteRecoveryStoragePoolMappings(this.PrimaryServer.ID, this.RecoveryServer.ID); + + this.WriteStoragePoolMappings(storagePoolMappingListResponse.StoragePoolMappings); + } + catch (Exception exception) + { + this.HandleException(exception); + } + } + + /// + /// Write Storage pool mappings. + /// + /// List of Storage pool mappings + private void WriteStoragePoolMappings(IList storagePoolMappings) + { + this.WriteObject(storagePoolMappings.Select(spm => new ASRStoragePoolMapping(spm)), true); + } + } +} \ No newline at end of file diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/NewAzureSiteRecoveryStoragePoolMapping.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/NewAzureSiteRecoveryStoragePoolMapping.cs new file mode 100644 index 000000000000..8169aec23145 --- /dev/null +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/NewAzureSiteRecoveryStoragePoolMapping.cs @@ -0,0 +1,101 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery; +using Microsoft.WindowsAzure; +using Microsoft.WindowsAzure.Management.SiteRecovery.Models; + +namespace Microsoft.Azure.Commands.RecoveryServices +{ + /// + /// Creates Azure Site Recovery Storage pool mapping. + /// + [Cmdlet(VerbsCommon.New, "AzureSiteRecoveryStoragePoolMapping")] + [OutputType(typeof(ASRJob))] + public class NewAzureSiteRecoveryStoragePoolMapping : RecoveryServicesCmdletBase + { + #region Parameters + /// + /// Job response. + /// + private JobResponse jobResponse = null; + + /// + /// Gets or sets Primary Storage object. + /// + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public ASRStorage PrimaryStorage { get; set; } + + /// + /// Gets or sets Primary Storage pool id. + /// + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string PrimaryStoragePoolId { get; set; } + + /// + /// Gets or sets Recovery Storage object. + /// + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public ASRStorage RecoveryStorage { get; set; } + + /// + /// Gets or sets Recovery Storage pool id. + /// + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string RecoveryStoragePoolId { get; set; } + #endregion Parameters + + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + try + { + this.jobResponse = + RecoveryServicesClient + .NewAzureSiteRecoveryStoragePoolMapping( + this.PrimaryStorage.ServerId, + this.PrimaryStorage.ID, + this.PrimaryStoragePoolId, + this.RecoveryStorage.ServerId, + this.RecoveryStorage.ID, + this.RecoveryStoragePoolId); + + this.WriteJob(this.jobResponse.Job); + } + catch (Exception exception) + { + this.HandleException(exception); + } + } + + /// + /// Writes Job. + /// + /// JOB object + private void WriteJob(Microsoft.WindowsAzure.Management.SiteRecovery.Models.Job job) + { + this.WriteObject(new ASRJob(job)); + } + } +} \ No newline at end of file diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoverySite.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoverySite.cs new file mode 100644 index 000000000000..b36183995a4b --- /dev/null +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoverySite.cs @@ -0,0 +1,85 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Management.Automation; +using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery; +using Microsoft.WindowsAzure.Management.SiteRecovery.Models; + +namespace Microsoft.Azure.Commands.RecoveryServices +{ + /// + /// Removes Azure Site Recovery Site. + /// + [Cmdlet(VerbsCommon.Remove, "AzureSiteRecoverySite")] + [OutputType(typeof(ASRJob))] + public class RemoveAzureSiteRecoverySite : RecoveryServicesCmdletBase + { + #region Parameters + + /// + /// Gets or sets the name of the site to be deleted + /// + [Parameter(ParameterSetName = ASRParameterSets.Default, Mandatory = true, HelpMessage = "Name of the site to be deleted")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + + /// + /// Gets or sets the vault + /// + [Parameter(ParameterSetName = ASRParameterSets.Default, Mandatory = false, HelpMessage = "Vault Object for which the site has to be deleted")] + [ValidateNotNullOrEmpty] + public ASRVault Vault { get; set; } + + /// + /// Gets or sets switch parameter. On passing, command does not ask for confirmation. + /// + [Parameter(Mandatory = false)] + public SwitchParameter Force { get; set; } + + #endregion + + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + try + { + // Check if site has registered servers and prevent the operation + // But the rest api is exposed and can be called directly + // - best to add this validation in service then before deleting a site + this.ConfirmAction( + this.Force.IsPresent, + string.Format(Properties.Resources.RemoveSiteWarning, this.Name), + string.Format(Properties.Resources.RemoveSiteWhatIfMessage), + this.Name, + () => + { + JobResponse response = + RecoveryServicesClient.DeleteAzureSiteRecoverySite( + this.Name, + this.Vault); + + this.WriteObject(response.Job, true); + }); + } + catch (Exception exception) + { + this.HandleException(exception); + } + } + } +} diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoveryStoragePoolMapping.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoveryStoragePoolMapping.cs new file mode 100644 index 000000000000..b22152bb349e --- /dev/null +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoveryStoragePoolMapping.cs @@ -0,0 +1,101 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Management.Automation; +using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery; +using Microsoft.WindowsAzure; +using Microsoft.WindowsAzure.Management.SiteRecovery.Models; + +namespace Microsoft.Azure.Commands.RecoveryServices +{ + /// + /// Creates Azure Site Recovery Storage pool mapping. + /// + [Cmdlet(VerbsCommon.Remove, "AzureSiteRecoveryStoragePoolMapping")] + [OutputType(typeof(ASRJob))] + public class RemoveAzureSiteRecoveryStoragePoolMapping : RecoveryServicesCmdletBase + { + #region Parameters + /// + /// Job response. + /// + private JobResponse jobResponse = null; + + /// + /// Gets or sets Primary Storage object. + /// + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public ASRStorage PrimaryStorage { get; set; } + + /// + /// Gets or sets Primary Storage pool id. + /// + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string PrimaryStoragePoolId { get; set; } + + /// + /// Gets or sets Recovery Storage object. + /// + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public ASRStorage RecoveryStorage { get; set; } + + /// + /// Gets or sets Recovery Storage pool id. + /// + [Parameter(Mandatory = true)] + [ValidateNotNullOrEmpty] + public string RecoveryStoragePoolId { get; set; } + #endregion Parameters + + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + try + { + this.jobResponse = + RecoveryServicesClient + .RemoveAzureSiteRecoveryStoragePoolMapping( + this.PrimaryStorage.ServerId, + this.PrimaryStorage.ID, + this.PrimaryStoragePoolId, + this.RecoveryStorage.ServerId, + this.RecoveryStorage.ID, + this.RecoveryStoragePoolId); + + this.WriteJob(this.jobResponse.Job); + } + catch (Exception exception) + { + this.HandleException(exception); + } + } + + /// + /// Writes Job. + /// + /// JOB object + private void WriteJob(Microsoft.WindowsAzure.Management.SiteRecovery.Models.Job job) + { + this.WriteObject(new ASRJob(job)); + } + } +} \ No newline at end of file diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoveryVault.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoveryVault.cs new file mode 100644 index 000000000000..9ab0a475c410 --- /dev/null +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoveryVault.cs @@ -0,0 +1,104 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using System.Net; +using Microsoft.Azure.Commands.RecoveryServices.Properties; +using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery; +using Microsoft.Azure.Portal.RecoveryServices.Models.Common; +using Microsoft.WindowsAzure.Management.RecoveryServices.Models; +using Microsoft.WindowsAzure.Management.SiteRecovery.Models; + +namespace Microsoft.Azure.Commands.RecoveryServices +{ + /// + /// Used to initiate a vault remove operation. + /// + [Cmdlet(VerbsCommon.Remove, "AzureSiteRecoveryVault")] + [OutputType(typeof(VaultOperationOutput))] + public class RemoveAzureSiteRecoveryVault : RecoveryServicesCmdletBase + { + /// + /// Holds the Name of the vault. + /// + private string targetName = string.Empty; + + #region Parameters + + /// + /// Gets or sets the vault name + /// + [Parameter(ParameterSetName = ASRParameterSets.ByParam, Mandatory = true, HelpMessage = "Vault to be deleted")] + [ValidateNotNullOrEmpty] + public ASRVault Vault { get; set; } + + /// + /// Gets or sets switch parameter. On passing, command does not ask for confirmation. + /// + [Parameter(Mandatory = false)] + public SwitchParameter Force { get; set; } + + #endregion + + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + try + { + // Update vault settings with the working vault + Utilities.UpdateVaultSettings(new ASRVaultCreds() + { + CloudServiceName = this.Vault.CloudServiceName, + ResourceName = this.Vault.Name + }); + + // Check if vault has servers registered to it - prevent the operation. + ServerListResponse serverListResponse = + RecoveryServicesClient.GetAzureSiteRecoveryServer(false); + + if (serverListResponse.Servers.Count != 0) + { + throw new InvalidOperationException( + string.Format( + Properties.Resources.VaultCannotBeDeleted, + this.Vault.Name)); + } + + this.ConfirmAction( + this.Force.IsPresent, + string.Format(Properties.Resources.RemoveVaultWarning, this.Vault.Name), + string.Format(Properties.Resources.RemoveVaultWhatIfMessage), + this.Vault.Name, + () => + { + AzureOperationResponse response = RecoveryServicesClient.DeleteVault(this.Vault.CloudServiceName, this.Vault.Name); + + VaultOperationOutput output = new VaultOperationOutput() + { + Response = response.StatusCode == HttpStatusCode.OK ? Resources.VaultDeletionSuccessMessage : response.StatusCode.ToString() + }; + + this.WriteObject(output, true); + }); + } + catch (Exception exception) + { + this.HandleException(exception); + } + } + } +} diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionEntity.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionEntity.cs index 181e3b8ea9d0..40a7429ae0b5 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionEntity.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionEntity.cs @@ -61,6 +61,8 @@ public class SetAzureSiteRecoveryProtectionEntity : RecoveryServicesCmdletBase /// Gets or sets Protection Entity Object. /// [Parameter(ParameterSetName = ASRParameterSets.ByPEObject, Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ASRParameterSets.EnableReplicationGroup, Mandatory = true)] + [Parameter(ParameterSetName = ASRParameterSets.DisableReplicationGroup, Mandatory = true)] [ValidateNotNullOrEmpty] public ASRProtectionEntity ProtectionEntity { get; set; } @@ -109,6 +111,44 @@ public class SetAzureSiteRecoveryProtectionEntity : RecoveryServicesCmdletBase /// [Parameter(Mandatory = false)] public SwitchParameter Force { get; set; } + + /// + /// Gets or sets RPO in seconds. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnableReplicationGroup, Mandatory = true)] + [ValidateNotNullOrEmpty] + public int RPO { get; set; } + + /// + /// Gets or sets Replication type (sync/async). + /// + [Parameter(ParameterSetName = ASRParameterSets.EnableReplicationGroup, Mandatory = true)] + [ValidateNotNullOrEmpty] + [ValidateSet( + Constants.Sync, + Constants.Async)] + public string Replicationtype { get; set; } + + /// + /// Gets or sets Recovery array id. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnableReplicationGroup, Mandatory = true)] + [ValidateNotNullOrEmpty] + public string RecoveryArrayId { get; set; } + + /// + /// Gets or sets switch parameter. On passing true, replica LUNs will get deleted. + /// + [Parameter(ParameterSetName = ASRParameterSets.DisableReplicationGroup, Mandatory = false)] + [ValidateNotNullOrEmpty] + public SwitchParameter DeleteReplicaLuns { get; set; } + + /// + /// Gets or sets Recovery container id for SAN to delete replica LUNs. + /// + [Parameter(ParameterSetName = ASRParameterSets.DisableReplicationGroup, Mandatory = false)] + [ValidateNotNullOrEmpty] + public string RecoveryContainerId { get; set; } #endregion Parameters /// @@ -118,6 +158,8 @@ public override void ExecuteCmdlet() { switch (this.ParameterSetName) { + case ASRParameterSets.EnableReplicationGroup: + case ASRParameterSets.DisableReplicationGroup: case ASRParameterSets.ByPEObject: this.Id = this.ProtectionEntity.ID; this.ProtectionContainerId = this.ProtectionEntity.ProtectionContainerId; @@ -162,23 +204,55 @@ public override void ExecuteCmdlet() { try { - if (this.Protection == Constants.EnableProtection) + string profileId = string.Empty; + string replicationProvider = null; + + if (this.ProtectionEntity == null) { - string profileId = string.Empty; - var input = new EnableProtectionInput(); + var pe = RecoveryServicesClient.GetAzureSiteRecoveryProtectionEntity( + this.ProtectionContainerId, + this.Id); + this.ProtectionEntity = new ASRProtectionEntity(pe.ProtectionEntity); + } - if (this.ProtectionEntity == null) + // Get the replciation provider from profile object otherwise assume its E2E. + // Let the call go without profileId set. + if (this.ProtectionProfile != null) + { + profileId = this.ProtectionProfile.ID; + replicationProvider = this.ProtectionProfile.ReplicationProvider; + } + else + { + this.WriteWarningWithTimestamp( + string.Format( + Properties.Resources.MandatoryParamFromNextRelease, + "ProtectionProfile")); + string pcId = this.ProtectionContainerId ?? this.ProtectionEntity.ProtectionContainerId; + var pc = RecoveryServicesClient.GetAzureSiteRecoveryProtectionContainer( + pcId); + + // PC will have all profiles associated with same replciation providers only. + replicationProvider = + pc.ProtectionContainer.AvailableProtectionProfiles.Count < 1 ? + null : + pc.ProtectionContainer.AvailableProtectionProfiles[0].ReplicationProvider; + + if (replicationProvider != Constants.HyperVReplica && + replicationProvider != Constants.San) { - var pe = RecoveryServicesClient.GetAzureSiteRecoveryProtectionEntity( - this.ProtectionContainerId, - this.Id); - this.ProtectionEntity = new ASRProtectionEntity(pe.ProtectionEntity); + throw new Exception("Please provide the protection profile object. It can be chosen from available protection profiles of the protection container."); } + } - // Get the replciation provider from profile object otherwise assume its E2E. - // Let the call go without profileId set. - string replicationProvider = null; + if (this.ParameterSetName == ASRParameterSets.ByIDs) + { + this.ValidateUsageById(replicationProvider, "Id"); + } + if (this.Protection == Constants.EnableProtection) + { + var input = new EnableProtectionInput(); if (this.ProtectionProfile != null) { profileId = this.ProtectionProfile.ID; @@ -196,18 +270,27 @@ public override void ExecuteCmdlet() null : pc.ProtectionContainer.AvailableProtectionProfiles[0].ReplicationProvider; - if (replicationProvider != Constants.HyperVReplica) + if (replicationProvider != Constants.HyperVReplica && + replicationProvider != Constants.San) { throw new Exception("Please provide the protection profile object. It can be chosen from available protection profiles of the protection container."); } } - if (this.ParameterSetName == ASRParameterSets.ByIDs) + if (replicationProvider == Constants.San) { - this.ValidateUsageById(replicationProvider, "Id"); - } + SanEnableProtectionInput sanInput = new SanEnableProtectionInput(); + sanInput.FabricId = this.ProtectionEntity.ServerId; + sanInput.FabricReplicationGroupId = this.ProtectionEntity.ID; + + sanInput.CloudId = this.ProtectionContainerId; + sanInput.RemoteArrayId = this.RecoveryArrayId; + sanInput.ReplicationType = this.Replicationtype; + sanInput.RecoveryPointObjective = this.RPO; - if (replicationProvider == Constants.HyperVReplicaAzure) + input.ReplicationProviderInput = DataContractUtils.Serialize(sanInput); + } + else if (replicationProvider == Constants.HyperVReplicaAzure) { input.ProtectionProfileId = this.ProtectionProfile.ID; AzureEnableProtectionInput azureInput = new AzureEnableProtectionInput(); @@ -256,10 +339,25 @@ public override void ExecuteCmdlet() } else { + DisableProtectionInput input = null; + + if (replicationProvider == Constants.San) + { + string recoveryCloudId = string.Empty; + Utilities.GetCloudIdFromContainerId(this.RecoveryContainerId, out recoveryCloudId); + input = new DisableProtectionInput(); + SanDisableProtectionInput sanInput = new SanDisableProtectionInput(); + sanInput.DeleteReplicaLuns = this.DeleteReplicaLuns; + sanInput.TargetCloudIdForLunDeletion = recoveryCloudId; + + input.ReplicationProviderInput = DataContractUtils.Serialize(sanInput); + } + this.jobResponse = - RecoveryServicesClient.DisbleProtection( + RecoveryServicesClient.DisableProtection( this.ProtectionContainerId, - this.Id); + this.Id, + input); } this.WriteJob(this.jobResponse.Job); diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionProfile.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionProfile.cs new file mode 100644 index 000000000000..0afc2ace12c1 --- /dev/null +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionProfile.cs @@ -0,0 +1,332 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Management.Automation; +using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery; +using Microsoft.Azure.Portal.RecoveryServices.Models.Common; +using Microsoft.WindowsAzure.Management.SiteRecovery.Models; +using Microsoft.WindowsAzure.Management.Storage.Models; + +namespace Microsoft.Azure.Commands.RecoveryServices +{ + /// + /// Updates Azure Site Recovery Protection Profile. + /// Protection profile must be associated with the protection container. + /// + [Cmdlet(VerbsCommon.Set, "AzureSiteRecoveryProtectionProfile", DefaultParameterSetName = ASRParameterSets.EnterpriseToAzure)] + [OutputType(typeof(ASRJob))] + public class SetAzureSiteRecoveryProtectionProfile : RecoveryServicesCmdletBase + { + /// + /// Job response. + /// + private JobResponse jobResponse = null; + + #region Parameters + + /// + /// Gets or sets Protection Profile object. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise, Mandatory = true, ValueFromPipeline = true)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure, Mandatory = true, ValueFromPipeline = true)] + [ValidateNotNullOrEmpty] + public ASRProtectionProfile ProtectionProfile { get; set; } + + /// + /// Gets or sets a value for Replication Method of the Protection Profile. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)] + [ValidateNotNullOrEmpty] + [ValidateSet( + Constants.OnlineReplicationMethod, + Constants.OfflineReplicationMethod)] + public string ReplicationMethod { get; set; } + + /// + /// Gets or sets Recovery Azure Storage Account Name of the Protection Profile for E2A scenarios. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure)] + [ValidateNotNullOrEmpty] + public string RecoveryAzureStorageAccount { get; set; } + + /// + /// Gets or sets Replication Frequency of the Protection Profile in seconds. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure)] + [ValidateNotNullOrEmpty] + [ValidateSet( + Constants.Thirty, + Constants.ThreeHundred, + Constants.NineHundred)] + public string ReplicationFrequencyInSeconds { get; set; } + + /// + /// Gets or sets Recovery Points of the Protection Profile. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure)] + [ValidateNotNullOrEmpty] + public int? RecoveryPoints { get; set; } + + /// + /// Gets or sets Application Consistent Snapshot Frequency of the Protection Profile in hours. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure)] + [ValidateNotNullOrEmpty] + public int? ApplicationConsistentSnapshotFrequencyInHours { get; set; } + + /// + /// Gets or sets a value indicating whether Compression needs to be Enabled on the Protection Profile. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)] + [ValidateNotNullOrEmpty] + public SwitchParameter? CompressionEnabled { get; set; } + + /// + /// Gets or sets the Replication Port of the Protection Profile. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)] + [ValidateNotNullOrEmpty] + public ushort? ReplicationPort { get; set; } + + /// + /// Gets or sets the Replication Port of the Protection Profile. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)] + [ValidateNotNullOrEmpty] + [ValidateSet( + Constants.AuthenticationTypeCertificate, + Constants.AuthenticationTypeKerberos)] + public string Authentication { get; set; } + + /// + /// Gets or sets Replication Start time of the Protection Profile. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)] + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToAzure)] + [ValidateNotNullOrEmpty] + public TimeSpan? ReplicationStartTime { get; set; } + + /// + /// Gets or sets a value indicating whether Replica should be Deleted on + /// disabling protection of a protection entity protected by the Protection Profile. + /// + [Parameter(ParameterSetName = ASRParameterSets.EnterpriseToEnterprise)] + [ValidateNotNullOrEmpty] + public SwitchParameter? AllowReplicaDeletion { get; set; } + + #endregion Parameters + + /// + /// ProcessRecord of the command. + /// + public override void ExecuteCmdlet() + { + try + { + switch (this.ParameterSetName) + { + case ASRParameterSets.EnterpriseToAzure: + this.EnterpriseToAzureUpdate(); + break; + case ASRParameterSets.EnterpriseToEnterprise: + this.EnterpriseToEnterpriseUpdate(); + break; + } + } + catch (Exception exception) + { + this.HandleException(exception); + } + } + + /// + /// Updates an E2A Protection Profile + /// + private void EnterpriseToAzureUpdate() + { + if (string.Compare(this.ProtectionProfile.ReplicationProvider, Constants.HyperVReplicaAzure, StringComparison.OrdinalIgnoreCase) != 0) + { + throw new InvalidOperationException( + string.Format( + Properties.Resources.IncorrectReplicationProvider, + this.ProtectionProfile.ReplicationProvider)); + } + + //// Verify whether the storage account is associated with the account or not. + //// PSRecoveryServicesClientHelper.ValidateStorageAccountAssociation(this.RecoveryAzureStorageAccount); + + PSRecoveryServicesClient.ValidateReplicationStartTime(this.ReplicationStartTime); + + // The user should always retrieve the protection profile object before passing it on to the update cmdlet. + // Otherwise old data might get updated as new + // How do we prevent the user from modifying the object itself? + HyperVReplicaAzureProtectionProfileInput hyperVReplicaAzureProtectionProfileInput + = new HyperVReplicaAzureProtectionProfileInput() + { + ApplicationConsistentSnapshotFrequencyInHours = + this.ApplicationConsistentSnapshotFrequencyInHours.HasValue + ? this.ApplicationConsistentSnapshotFrequencyInHours.GetValueOrDefault() + : this.ProtectionProfile.HyperVReplicaAzureProviderSettingsObject.ApplicationConsistentSnapshotFrequencyInHours, + OnlineReplicationStartTime = + this.ReplicationStartTime.HasValue + ? this.ReplicationStartTime.GetValueOrDefault() + : this.ProtectionProfile.HyperVReplicaAzureProviderSettingsObject.ReplicationStartTime, + RecoveryPointHistoryDuration = + this.RecoveryPoints.HasValue + ? this.RecoveryPoints.GetValueOrDefault() + : this.ProtectionProfile.HyperVReplicaAzureProviderSettingsObject.RecoveryPoints, + }; + + ushort replicationFrequencyInSeconds = + PSRecoveryServicesClient.ConvertReplicationFrequencyToUshort(this.ReplicationFrequencyInSeconds); + if (string.IsNullOrEmpty(this.ReplicationFrequencyInSeconds)) + { + hyperVReplicaAzureProtectionProfileInput.ReplicationInterval + = this.ProtectionProfile.HyperVReplicaAzureProviderSettingsObject.ReplicationFrequencyInSeconds; + } + else + { + hyperVReplicaAzureProtectionProfileInput.ReplicationInterval = replicationFrequencyInSeconds; + } + + var storageAccount = new CustomerStorageAccount(); + storageAccount.SubscriptionId = this.ProtectionProfile.HyperVReplicaAzureProviderSettingsObject.RecoveryAzureSubscription; + if (string.IsNullOrEmpty(this.RecoveryAzureStorageAccount)) + { + storageAccount.StorageAccountName + = this.ProtectionProfile.HyperVReplicaAzureProviderSettingsObject.RecoveryAzureStorageAccountName; + } + else + { + storageAccount.StorageAccountName = this.RecoveryAzureStorageAccount; + } + + hyperVReplicaAzureProtectionProfileInput.StorageAccounts = new System.Collections.Generic.List(); + hyperVReplicaAzureProtectionProfileInput.StorageAccounts.Add(storageAccount); + + UpdateProtectionProfileInput updateProtectionProfileInput = + new UpdateProtectionProfileInput( + DataContractUtils.Serialize(hyperVReplicaAzureProtectionProfileInput)); + + this.jobResponse = RecoveryServicesClient.UpdateAzureSiteRecoveryProtectionProfile( + updateProtectionProfileInput, + this.ProtectionProfile.ID); + + this.WriteJob(this.jobResponse.Job); + } + + /// + /// Updates an E2E Protection Profile + /// + private void EnterpriseToEnterpriseUpdate() + { + if (string.Compare(this.ProtectionProfile.ReplicationProvider, Constants.HyperVReplica, StringComparison.OrdinalIgnoreCase) != 0) + { + throw new InvalidOperationException( + string.Format( + Properties.Resources.IncorrectReplicationProvider, + this.ProtectionProfile.ReplicationProvider)); + } + + string replicationMethod = null; + if (string.IsNullOrEmpty(this.ReplicationMethod)) + { + replicationMethod + = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationMethod; + } + else + { + replicationMethod = this.ReplicationMethod; + } + + string authentication = null; + if (string.IsNullOrEmpty(this.Authentication)) + { + authentication + = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.Authentication; + } + else + { + authentication = this.Authentication; + } + + HyperVReplicaProtectionProfileInput hyperVReplicaProtectionProfileInput + = new HyperVReplicaProtectionProfileInput() + { + ApplicationConsistentSnapshotFrequencyInHours = + this.ApplicationConsistentSnapshotFrequencyInHours.HasValue + ? this.ApplicationConsistentSnapshotFrequencyInHours.GetValueOrDefault() + : this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ApplicationConsistentSnapshotFrequencyInHours, + OnlineReplicationStartTime = + this.ReplicationStartTime.HasValue + ? this.ReplicationStartTime.GetValueOrDefault() + : this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationStartTime, + RecoveryPoints = + this.RecoveryPoints.HasValue + ? this.RecoveryPoints.GetValueOrDefault() + : this.ProtectionProfile.HyperVReplicaProviderSettingsObject.RecoveryPoints, + CompressionEnabled = + this.CompressionEnabled.HasValue + ? (bool)this.CompressionEnabled.GetValueOrDefault() + : this.ProtectionProfile.HyperVReplicaProviderSettingsObject.CompressionEnabled, + OnlineReplicationMethod = + (string.Compare(replicationMethod, Constants.OnlineReplicationMethod, StringComparison.OrdinalIgnoreCase) == 0) ? true : false, + ReplicationPort = + this.ReplicationPort.HasValue + ? this.ReplicationPort.GetValueOrDefault() + : this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationPort, + AllowReplicaDeletion = + this.AllowReplicaDeletion.HasValue + ? (bool)this.AllowReplicaDeletion.GetValueOrDefault() + : this.ProtectionProfile.HyperVReplicaProviderSettingsObject.AllowReplicaDeletion, + AllowedAuthenticationType = (ushort)((string.Compare(authentication, Constants.AuthenticationTypeKerberos, StringComparison.OrdinalIgnoreCase) == 0) ? 1 : 2), + }; + + ushort replicationFrequencyInSeconds = + PSRecoveryServicesClient.ConvertReplicationFrequencyToUshort(this.ReplicationFrequencyInSeconds); + if (string.IsNullOrEmpty(this.ReplicationFrequencyInSeconds)) + { + hyperVReplicaProtectionProfileInput.ReplicationFrequencyInSeconds + = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationFrequencyInSeconds; + } + else + { + hyperVReplicaProtectionProfileInput.ReplicationFrequencyInSeconds = replicationFrequencyInSeconds; + } + + UpdateProtectionProfileInput updateProtectionProfileInput = + new UpdateProtectionProfileInput( + DataContractUtils.Serialize(hyperVReplicaProtectionProfileInput)); + + this.jobResponse = RecoveryServicesClient.UpdateAzureSiteRecoveryProtectionProfile( + updateProtectionProfileInput, + this.ProtectionProfile.ID); + + this.WriteJob(this.jobResponse.Job); + } + + /// + /// Writes Job + /// + /// Job object + private void WriteJob(Microsoft.WindowsAzure.Management.SiteRecovery.Models.Job job) + { + this.WriteObject(new ASRJob(job)); + } + } +} diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryVM.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryVM.cs index 3da012586dc9..b7af255ca78a 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryVM.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryVM.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using System; +using System.Collections.Generic; using System.Management.Automation; using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery; using Microsoft.Azure.Portal.RecoveryServices.Models.Common; @@ -45,28 +46,43 @@ public class SetAzureSiteRecoveryVirtualMachine : RecoveryServicesCmdletBase /// [Parameter] [ValidateNotNullOrEmpty] - public string Name { get; set; } + public string RecoveryAzureVMName { get; set; } /// /// Gets or sets Recovery Azure VM size /// [Parameter] [ValidateNotNullOrEmpty] - public string Size { get; set; } + public string RecoveryAzureVMSize { get; set; } + + /// + /// Gets or sets Recovery Azure Network Id + /// + [Parameter] + [ValidateNotNullOrEmpty] + public string RecoveryAzureNetworkId { get; set; } /// /// Gets or sets Selected Primary Network interface card Id /// [Parameter] [ValidateNotNullOrEmpty] - public string PrimaryNic { get; set; } + public string PrimaryNicId { get; set; } /// - /// Gets or sets Recovery Azure Network Id + /// Gets or sets recovery VM subnet name + /// + [Parameter] + [ValidateNotNullOrEmpty] + public string RecoveryVMSubnetName { get; set; } + + /// + /// Gets or sets recovery NIC static IP address /// [Parameter] [ValidateNotNullOrEmpty] - public string RecoveryNetworkId { get; set; } + public string RecoveryNicIPAddress { get; set; } + #endregion Parameters /// @@ -75,28 +91,28 @@ public class SetAzureSiteRecoveryVirtualMachine : RecoveryServicesCmdletBase public override void ExecuteCmdlet() { // Check for at least one option - if (string.IsNullOrEmpty(this.Name) && - string.IsNullOrEmpty(this.Size) && - string.IsNullOrEmpty(this.PrimaryNic) && - string.IsNullOrEmpty(this.RecoveryNetworkId)) + if (string.IsNullOrEmpty(this.RecoveryAzureVMName) && + string.IsNullOrEmpty(this.RecoveryAzureVMSize) && + string.IsNullOrEmpty(this.PrimaryNicId) && + (string.IsNullOrEmpty(this.RecoveryAzureNetworkId) || + string.IsNullOrEmpty(this.RecoveryVMSubnetName) || + string.IsNullOrEmpty(this.RecoveryNicIPAddress))) { this.WriteWarning(Properties.Resources.ArgumentsMissingForUpdateVmProperties.ToString()); return; } - // Both primary & recovery inputs should be present - if (string.IsNullOrEmpty(this.PrimaryNic) ^ - string.IsNullOrEmpty(this.RecoveryNetworkId)) - { - this.WriteWarning(Properties.Resources.NetworkArgumentsMissingForUpdateVmProperties.ToString()); - return; - } + VMProperties updateVmPropertiesInput = new VMProperties(); + updateVmPropertiesInput.RecoveryAzureVMName = this.RecoveryAzureVMName; + updateVmPropertiesInput.RecoveryAzureVMSize = this.RecoveryAzureVMSize; + updateVmPropertiesInput.SelectedRecoveryAzureNetworkId = this.RecoveryAzureNetworkId; - UpdateVmPropertiesInput updateVmPropertiesInput = new UpdateVmPropertiesInput(); - updateVmPropertiesInput.RecoveryAzureVmGivenName = this.Name; - updateVmPropertiesInput.RecoveryAzureVmSize = this.Size; - updateVmPropertiesInput.SelectedPrimaryNicId = this.PrimaryNic; - updateVmPropertiesInput.RecoveryAzureNetworkId = this.RecoveryNetworkId; + updateVmPropertiesInput.VMNics = new List(); + VMNicDetails vmnicDetails = new VMNicDetails(); + vmnicDetails.NicId = this.PrimaryNicId; + vmnicDetails.RecoveryVMSubnetName = this.RecoveryVMSubnetName; + vmnicDetails.ReplicaNicStaticIPAddress = this.RecoveryNicIPAddress; + updateVmPropertiesInput.VMNics.Add(vmnicDetails); this.jobResponse = RecoveryServicesClient.UpdateVmProperties( this.VirtualMachine.ProtectionContainerId, diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryPlannedFailoverJob.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryPlannedFailoverJob.cs index 0cd19fa9d1fc..ee50b2900b24 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryPlannedFailoverJob.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryPlannedFailoverJob.cs @@ -68,6 +68,20 @@ public class StartAzureSiteRecoveryPlannedFailoverJob : RecoveryServicesCmdletBa [ValidateNotNullOrEmpty] public ASRProtectionEntity ProtectionEntity { get; set; } + /// + /// Gets or sets Encryption Key File + /// + [Parameter] + [ValidateNotNullOrEmpty] + public string EncryptionKeyFile { get; set; } + + /// + /// Gets or sets Secondary Encryption Key File + /// + [Parameter] + [ValidateNotNullOrEmpty] + public string SecondaryEncryptionKeyFile { get; set; } + /// /// Gets or sets Failover direction for the recovery plan. /// @@ -113,7 +127,7 @@ public override void ExecuteCmdlet() this.StartRpPlannedFailover(); break; case ASRParameterSets.ByPEObject: - this.ProtectionEntityId = this.ProtectionEntity.ID; + this.ProtectionEntityId = this.ProtectionEntity.ID; this.ProtectionContainerId = this.ProtectionEntity.ProtectionContainerId; this.StartPEPlannedFailover(); break; @@ -154,6 +168,17 @@ private void StartPEPlannedFailover() { var blob = new AzureFailoverInput(); blob.VaultLocation = this.GetCurrentValutLocation(); + + if (!string.IsNullOrEmpty(this.EncryptionKeyFile)) + { + blob.PrimaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.EncryptionKeyFile); + } + + if (!string.IsNullOrEmpty(this.SecondaryEncryptionKeyFile)) + { + blob.SecondaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.SecondaryEncryptionKeyFile); + } + request.ReplicationProviderSettings = DataContractUtils.Serialize(blob); } else @@ -209,6 +234,17 @@ private void StartRpPlannedFailover() { var blob = new AzureFailoverInput(); blob.VaultLocation = this.GetCurrentValutLocation(); + + if (!string.IsNullOrEmpty(this.EncryptionKeyFile)) + { + blob.PrimaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.EncryptionKeyFile); + } + + if (!string.IsNullOrEmpty(this.SecondaryEncryptionKeyFile)) + { + blob.SecondaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.SecondaryEncryptionKeyFile); + } + request.ReplicationProviderSettings = DataContractUtils.Serialize(blob); } else @@ -224,7 +260,7 @@ private void StartRpPlannedFailover() request.FailoverDirection = this.Direction; this.jobResponse = RecoveryServicesClient.StartAzureSiteRecoveryPlannedFailover( - this.RPId, + this.RPId, request); this.WriteJob(this.jobResponse.Job); diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileAssociationJob.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileAssociationJob.cs index 1b1f3f55ec49..696368e4a8cb 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileAssociationJob.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileAssociationJob.cs @@ -82,16 +82,6 @@ public override void ExecuteCmdlet() } } - /// - /// Handles interrupts. - /// - protected override void StopProcessing() - { - // Ctrl + C and etc - base.StopProcessing(); - this.StopProcessingFlag = true; - } - /// /// Associates protection profile with one enterprise based and an Azure protection container /// @@ -155,6 +145,10 @@ private void EnterpriseToEnterpriseAssociation() if (string.Compare( this.ProtectionProfile.ReplicationProvider, Constants.HyperVReplica, + StringComparison.OrdinalIgnoreCase) != 0 && + string.Compare( + this.ProtectionProfile.ReplicationProvider, + Constants.San, StringComparison.OrdinalIgnoreCase) != 0) { throw new InvalidOperationException( @@ -163,26 +157,55 @@ private void EnterpriseToEnterpriseAssociation() this.ProtectionProfile.ReplicationProvider)); } - HyperVReplicaProtectionProfileInput hyperVReplicaProtectionProfileInput - = new HyperVReplicaProtectionProfileInput() + CreateProtectionProfileInput createProtectionProfileInput = null; + + if (string.Compare( + this.ProtectionProfile.ReplicationProvider, + Constants.HyperVReplica, + StringComparison.OrdinalIgnoreCase) == 0) + { + HyperVReplicaProtectionProfileInput hyperVReplicaProtectionProfileInput + = new HyperVReplicaProtectionProfileInput() + { + ApplicationConsistentSnapshotFrequencyInHours = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ApplicationConsistentSnapshotFrequencyInHours, + ReplicationFrequencyInSeconds = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationFrequencyInSeconds, + OnlineReplicationStartTime = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationStartTime, + CompressionEnabled = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.CompressionEnabled, + OnlineReplicationMethod = (string.Compare(this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationMethod, Constants.OnlineReplicationMethod, StringComparison.OrdinalIgnoreCase) == 0) ? true : false, + RecoveryPoints = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.RecoveryPoints, + ReplicationPort = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationPort, + AllowReplicaDeletion = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.AllowReplicaDeletion, + AllowedAuthenticationType = (ushort)((string.Compare(this.ProtectionProfile.HyperVReplicaProviderSettingsObject.Authentication, Constants.AuthenticationTypeKerberos, StringComparison.OrdinalIgnoreCase) == 0) ? 1 : 2), + }; + + createProtectionProfileInput = + new CreateProtectionProfileInput( + //// Name of the protection profile as the name of the protection container if not given + string.IsNullOrEmpty(this.ProtectionProfile.Name) ? this.PrimaryProtectionContainer.Name : this.ProtectionProfile.Name, + this.ProtectionProfile.ReplicationProvider, + DataContractUtils.Serialize(hyperVReplicaProtectionProfileInput)); + } + else if (string.Compare( + this.ProtectionProfile.ReplicationProvider, + Constants.San, + StringComparison.OrdinalIgnoreCase) == 0) + { + SanProtectionProfileInput sanProtectionProfileInput + = new SanProtectionProfileInput() { - ApplicationConsistentSnapshotFrequencyInHours = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ApplicationConsistentSnapshotFrequencyInHours, - ReplicationFrequencyInSeconds = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationFrequencyInSeconds, - OnlineReplicationStartTime = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationStartTime, - CompressionEnabled = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.CompressionEnabled, - OnlineReplicationMethod = (string.Compare(this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationMethod, Constants.OnlineReplicationMethod, StringComparison.OrdinalIgnoreCase) == 0) ? true : false, - RecoveryPoints = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.RecoveryPoints, - ReplicationPort = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.ReplicationPort, - AllowReplicaDeletion = this.ProtectionProfile.HyperVReplicaProviderSettingsObject.AllowReplicaDeletion, - AllowedAuthenticationType = (ushort)((string.Compare(this.ProtectionProfile.HyperVReplicaProviderSettingsObject.Authentication, Constants.AuthenticationTypeKerberos, StringComparison.OrdinalIgnoreCase) == 0) ? 1 : 2), + CloudId = this.ProtectionProfile.SanProviderSettingsObject.CloudId, + RemoteCloudId = this.ProtectionProfile.SanProviderSettingsObject.RemoteCloudId, + ArrayUniqueId = this.ProtectionProfile.SanProviderSettingsObject.ArrayUniqueId, + RemoteArrayUniqueId = this.ProtectionProfile.SanProviderSettingsObject.RemoteArrayUniqueId }; - CreateProtectionProfileInput createProtectionProfileInput = - new CreateProtectionProfileInput( + createProtectionProfileInput = + new CreateProtectionProfileInput( //// Name of the protection profile as the name of the protection container if not given - string.IsNullOrEmpty(this.ProtectionProfile.Name) ? this.PrimaryProtectionContainer.Name : this.ProtectionProfile.Name, - this.ProtectionProfile.ReplicationProvider, - DataContractUtils.Serialize(hyperVReplicaProtectionProfileInput)); + string.IsNullOrEmpty(this.ProtectionProfile.Name) ? this.PrimaryProtectionContainer.Name : this.ProtectionProfile.Name, + this.ProtectionProfile.ReplicationProvider, + DataContractUtils.Serialize(sanProtectionProfileInput)); + } ProtectionProfileAssociationInput protectionProfileAssociationInput = new ProtectionProfileAssociationInput( diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileDissociationJob.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileDissociationJob.cs index e7ed747dae83..936ebed133b7 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileDissociationJob.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileDissociationJob.cs @@ -15,6 +15,7 @@ using System; using System.Management.Automation; using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery; +using Microsoft.Azure.Portal.RecoveryServices.Models.Common; using Microsoft.WindowsAzure.Management.SiteRecovery.Models; namespace Microsoft.Azure.Commands.RecoveryServices @@ -84,14 +85,42 @@ public override void ExecuteCmdlet() break; } + CreateProtectionProfileInput createProtectionProfileInput = null; + if (string.Compare( + this.ProtectionProfile.ReplicationProvider, + Constants.San, + StringComparison.OrdinalIgnoreCase) == 0) + { + SanProtectionProfileInput sanProtectionProfileInput + = new SanProtectionProfileInput() + { + CloudId = this.ProtectionProfile.SanProviderSettingsObject.CloudId, + RemoteCloudId = this.ProtectionProfile.SanProviderSettingsObject.RemoteCloudId, + ArrayUniqueId = this.ProtectionProfile.SanProviderSettingsObject.ArrayUniqueId, + RemoteArrayUniqueId = this.ProtectionProfile.SanProviderSettingsObject.RemoteArrayUniqueId + }; + + createProtectionProfileInput = + new CreateProtectionProfileInput( + //// Name of the protection profile as the name of the protection container if not given + string.IsNullOrEmpty(this.ProtectionProfile.Name) ? this.PrimaryProtectionContainer.Name : this.ProtectionProfile.Name, + this.ProtectionProfile.ReplicationProvider, + DataContractUtils.Serialize(sanProtectionProfileInput)); + } + ProtectionProfileAssociationInput protectionProfileAssociationInput = new ProtectionProfileAssociationInput( this.PrimaryProtectionContainer.ID, recoveryContainerId); + CreateAndAssociateProtectionProfileInput createAndAssociateProtectionProfileInput = + new CreateAndAssociateProtectionProfileInput( + createProtectionProfileInput, + protectionProfileAssociationInput); + this.jobResponse = RecoveryServicesClient.StartDeleteAndDissociateAzureSiteRecoveryProtectionProfileJob( this.ProtectionProfile.ID, - protectionProfileAssociationInput); + createAndAssociateProtectionProfileInput); this.WriteJob(this.jobResponse.Job); } @@ -101,16 +130,6 @@ public override void ExecuteCmdlet() } } - /// - /// Handles interrupts. - /// - protected override void StopProcessing() - { - // Ctrl + C and etc - base.StopProcessing(); - this.StopProcessingFlag = true; - } - /// /// Writes Job /// diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryTestFailoverJob.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryTestFailoverJob.cs index 240e23931fff..f4f81a1d930b 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryTestFailoverJob.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryTestFailoverJob.cs @@ -145,6 +145,21 @@ public class StartAzureSiteRecoveryTestFailoverJob : RecoveryServicesCmdletBase [Parameter(ParameterSetName = ASRParameterSets.ByRPObjectWithVMNetworkID, Mandatory = true)] [Parameter(ParameterSetName = ASRParameterSets.ByRPIdWithVMNetworkID, Mandatory = true)] public string VmNetworkId { get; set; } + + /// + /// Gets or sets Encryption Key File + /// + [Parameter] + [ValidateNotNullOrEmpty] + public string EncryptionKeyFile { get; set; } + + /// + /// Gets or sets Secondary Encryption Key File + /// + [Parameter] + [ValidateNotNullOrEmpty] + public string SecondaryEncryptionKeyFile { get; set; } + #endregion Parameters /// @@ -288,6 +303,17 @@ private void StartRpTestFailover() { var blob = new AzureFailoverInput(); blob.VaultLocation = this.GetCurrentValutLocation(); + + if (!string.IsNullOrEmpty(this.EncryptionKeyFile)) + { + blob.PrimaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.EncryptionKeyFile); + } + + if (!string.IsNullOrEmpty(this.SecondaryEncryptionKeyFile)) + { + blob.SecondaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.SecondaryEncryptionKeyFile); + } + request.ReplicationProviderSettings = DataContractUtils.Serialize(blob); } } @@ -337,6 +363,17 @@ private void StartPETestFailover() { var blob = new AzureFailoverInput(); blob.VaultLocation = this.GetCurrentValutLocation(); + + if (!string.IsNullOrEmpty(this.EncryptionKeyFile)) + { + blob.PrimaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.EncryptionKeyFile); + } + + if (!string.IsNullOrEmpty(this.SecondaryEncryptionKeyFile)) + { + blob.SecondaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.SecondaryEncryptionKeyFile); + } + request.ReplicationProviderSettings = DataContractUtils.Serialize(blob); } } diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryUnPlannedFailoverJob.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryUnPlannedFailoverJob.cs index e018357be807..5f27aecd385b 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryUnPlannedFailoverJob.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryUnPlannedFailoverJob.cs @@ -133,6 +133,20 @@ public bool PerformSourceSiteOperations } } + /// + /// Gets or sets Encryption Key File + /// + [Parameter] + [ValidateNotNullOrEmpty] + public string EncryptionKeyFile { get; set; } + + /// + /// Gets or sets Secondary Encryption Key File + /// + [Parameter] + [ValidateNotNullOrEmpty] + public string SecondaryEncryptionKeyFile { get; set; } + /// /// Gets or sets switch parameter. This is required to PerformSourceSideActions. /// @@ -219,6 +233,17 @@ private void StartPEUnplannedFailover() { var blob = new AzureFailoverInput(); blob.VaultLocation = this.GetCurrentValutLocation(); + + if (!string.IsNullOrEmpty(this.EncryptionKeyFile)) + { + blob.PrimaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.EncryptionKeyFile); + } + + if (!string.IsNullOrEmpty(this.SecondaryEncryptionKeyFile)) + { + blob.SecondaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.SecondaryEncryptionKeyFile); + } + request.ReplicationProviderSettings = DataContractUtils.Serialize(blob); } } @@ -266,6 +291,17 @@ private void StartRpUnPlannedFailover() { var blob = new AzureFailoverInput(); blob.VaultLocation = this.GetCurrentValutLocation(); + + if (!string.IsNullOrEmpty(this.EncryptionKeyFile)) + { + blob.PrimaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.EncryptionKeyFile); + } + + if (!string.IsNullOrEmpty(this.SecondaryEncryptionKeyFile)) + { + blob.SecondaryKekCertificatePfx = CertUtils.GetCertInBase64EncodedForm(this.SecondaryEncryptionKeyFile); + } + request.ReplicationProviderSettings = DataContractUtils.Serialize(blob); } } diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/UpdateAzureSiteRecoveryProtectionEntity.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/UpdateAzureSiteRecoveryProtectionEntity.cs index e04af1730f16..c56a9fe2a432 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/UpdateAzureSiteRecoveryProtectionEntity.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/UpdateAzureSiteRecoveryProtectionEntity.cs @@ -85,16 +85,6 @@ public override void ExecuteCmdlet() } } - /// - /// Handles interrupts. - /// - protected override void StopProcessing() - { - // Ctrl + C and etc - base.StopProcessing(); - this.StopProcessingFlag = true; - } - /// /// Syncs the owner information. /// diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/CertUtils.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/CertUtils.cs index a2ff37c8ba7e..eb1b9e2d38bb 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/CertUtils.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/CertUtils.cs @@ -140,6 +140,57 @@ public static X509Certificate2 NewX509Certificate2(byte[] rawData, string passwo } } + /// + /// Method to get the Certificate's base 64 encoded string + /// + /// Certificate File Name + /// Base 64 encoded string of the certificate + public static string GetCertInBase64EncodedForm(string certFileName) + { + FileStream fileStream = null; + byte[] data = null; + string certInBase64EncodedForm = null; + + try + { + fileStream = new FileStream(certFileName, FileMode.Open, FileAccess.Read); + + // If the file size is more than 1MB, fail the call - this is just to avoid Dos Attacks + if (fileStream.Length > 1048576) + { + throw new Exception("The Certficate size exceeds 1MB. Please provide a file whose size is utmost 1 MB"); + } + + int size = (int)fileStream.Length; + data = new byte[size]; + size = fileStream.Read(data, 0, size); + + // Check if the file is a valid certificate before sending it to service + X509Certificate2 x509 = new X509Certificate2(); + x509.Import(data); + if (string.IsNullOrEmpty(x509.Thumbprint)) + { + throw new Exception("The thumbprint of Certificate is null or empty"); + } + + certInBase64EncodedForm = Convert.ToBase64String(data); + } + catch (Exception e) + { + certInBase64EncodedForm = null; + throw new ArgumentException(e.Message, certFileName, e); + } + finally + { + if (null != fileStream) + { + fileStream.Close(); + } + } + + return certInBase64EncodedForm; + } + /// /// Generates friendly name /// diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSContracts.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSContracts.cs index e85deac21183..044f4a44ffcd 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSContracts.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSContracts.cs @@ -733,6 +733,37 @@ public class HyperVReplicaProtectionProfileInput : HyperVReplicaSP1ProtectionPro public ushort ReplicationFrequencyInSeconds { get; set; } } + /// + /// San specific protection profile Input. + /// + [DataContract(Namespace = "http://schemas.microsoft.com/windowsazure")] + public class SanProtectionProfileInput + { + /// + /// Gets or sets the primary cloud getting paired. + /// + [DataMember] + public string CloudId { get; set; } + + /// + /// Gets or sets the recovery cloud getting paired. + /// + [DataMember] + public string RemoteCloudId { get; set; } + + /// + /// Gets or sets the primary array unique Id getting paired. + /// + [DataMember] + public string ArrayUniqueId { get; set; } + + /// + /// Gets or sets the recovery array unique Id getting paired. + /// + [DataMember] + public string RemoteArrayUniqueId { get; set; } + } + /// /// Hyper-V Replica Azure specific protection profile details. /// @@ -861,6 +892,57 @@ public class HyperVReplicaProtectionProfileDetails : HyperVReplicaSP1ProtectionP public ushort ReplicationFrequencyInSeconds { get; set; } } + /// + /// Azure Site Recovery Protection Profile SanProviderSettings. + /// + [SuppressMessage( + "Microsoft.StyleCop.CSharp.MaintainabilityRules", + "SA1402:FileMayOnlyContainASingleClass", + Justification = "Keeping all related objects together.")] + public class SanProviderSettings + { + /// + /// Initializes a new instance of the class. + /// + public SanProviderSettings() + { + } + + #region Properties + + /// + /// Gets or sets the primary cloud getting paired. + /// + public string CloudId { get; set; } + + /// + /// Gets or sets the recovery cloud getting paired. + /// + public string RemoteCloudId { get; set; } + + /// + /// Gets or sets the primary array unique Id getting paired. + /// + public string ArrayUniqueId { get; set; } + + /// + /// Gets or sets the recovery array unique Id getting paired. + /// + public string RemoteArrayUniqueId { get; set; } + + /// + /// Gets or sets Association Details. + /// + public List AssociationDetail { get; set; } + + /// + /// Gets or sets a value indicating whether profile can be dissociated or not. + /// + public bool CanDissociate { get; set; } + + #endregion + } + /// /// Azure Site Recovery Protection Profile HyperVReplicaProviderSettings. /// @@ -1124,6 +1206,82 @@ public class ASREnableProtectionInput public string ReplicationProviderInput { get; set; } } + /// + /// San specific enable replication group protection input as part of + /// EnableReplicationGroupProtection REST API. + /// + [DataContract(Namespace = "http://schemas.microsoft.com/windowsazure")] + [SuppressMessage( + "Microsoft.StyleCop.CSharp.MaintainabilityRules", + "SA1402:FileMayOnlyContainASingleClass", + Justification = "Keeping all related classes together.")] + public class SanEnableProtectionInput + { + /// + /// Gets or sets the fabric that contains the replication group. + /// + [DataMember(Order = 1)] + public string FabricId { get; set; } + + /// + /// Gets or sets the cloud that contains the replication group. + /// + [DataMember(Order = 2)] + public string CloudId { get; set; } + + /// + /// Gets or sets the fabric's replication group Id. + /// + [DataMember(Order = 3)] + public string FabricReplicationGroupId { get; set; } + + /// + /// Gets or sets the replication type (sync or async). + /// + [DataMember(Order = 4)] + public string ReplicationType { get; set; } + + /// + /// Gets or sets the RPO to use in conjunction with the replication type. Valid inputs are: + /// ReplicationType = Sync -> RPO value should be set to 0. + /// ReplicationType = Async + /// - RPO value left at 0 -> Array's default RPO will get used. + /// - RPO value non-zero -> Should be one of the array's supported RPO values. + /// + [DataMember(Order = 5)] + public int RecoveryPointObjective { get; set; } + + /// + /// Gets or sets the remote array to be used for protection. + /// + [DataMember(Order = 6)] + public string RemoteArrayId { get; set; } + } + + /// + /// San specific disable replication group protection input as part of + /// DisableReplicationGroupProtection REST API. + /// + [DataContract(Namespace = "http://schemas.microsoft.com/windowsazure")] + [SuppressMessage( + "Microsoft.StyleCop.CSharp.MaintainabilityRules", + "SA1402:FileMayOnlyContainASingleClass", + Justification = "Keeping all related classes together.")] + public class SanDisableProtectionInput + { + /// + /// Gets or sets a value indicating whether LUNs needs to be deleted. + /// + [DataMember(Order = 1)] + public bool DeleteReplicaLuns { get; set; } + + /// + /// Gets or sets the cloud Id from which LUNs should be deleted. + /// + [DataMember(Order = 2)] + public string TargetCloudIdForLunDeletion { get; set; } + } + /// /// Disk details for E2A provider. /// @@ -1164,6 +1322,64 @@ public class AzureVmDiskDetails [DataMember] public ulong MaxSizeMB { get; set; } } + + /// + /// VM properties. + /// + [DataContract(Namespace = "http://schemas.microsoft.com/windowsazure")] + [SuppressMessage( + "Microsoft.StyleCop.CSharp.MaintainabilityRules", + "SA1402:FileMayOnlyContainASingleClass", + Justification = "Keeping all related classes together.")] + public class VMProps + { + /// + /// Gets or sets Recovery Azure given name. + /// + [DataMember] + public string RecoveryAzureVMName { get; set; } + + /// + /// Gets or sets the Recovery Azure VM size. + /// + [DataMember] + public string RecoveryAzureVMSize { get; set; } + + /// + /// Gets or sets the selected recovery azure network Id. + /// + [DataMember] + public string SelectedRecoveryAzureNetworkId { get; set; } + + /// + /// Gets or sets the list of VM NIC details. + /// + [DataMember] + public List VMNics { get; set; } + } + + /// + /// Replication provider specific settings. + /// + [DataContract(Namespace = "http://schemas.microsoft.com/windowsazure")] + [SuppressMessage( + "Microsoft.StyleCop.CSharp.MaintainabilityRules", + "SA1402:FileMayOnlyContainASingleClass", + Justification = "Keeping all related classes together.")] + public class ReplicationProviderSpecificSettings + { + /// + /// Gets or sets Azure VM Disk details. + /// + [DataMember] + public AzureVmDiskDetails AzureVMDiskDetails { get; set; } + + /// + /// Gets or sets VM properties. + /// + [DataMember] + public VMProps VMProperties { get; set; } + } } namespace Microsoft.Azure.Portal.HybridServicesCore diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSObjects.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSObjects.cs index 989e7863aa3e..ab7f2f7d5c02 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSObjects.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSObjects.cs @@ -15,7 +15,10 @@ using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; +using System.IO; using System.Runtime.Serialization; +using System.Xml; +using System.Xml.Serialization; using Microsoft.Azure.Common.Authentication; using Microsoft.Azure.Portal.RecoveryServices.Models.Common; using Microsoft.WindowsAzure.Management.RecoveryServices.Models; @@ -152,6 +155,11 @@ public class Constants /// public const string HyperVReplicaAzure = "HyperVReplicaAzure"; + /// + /// Represents San string constant. + /// + public const string San = "San"; + /// /// Represents HyperVReplica string constant. /// @@ -241,6 +249,16 @@ public class Constants /// Acceptable values of Replication Frequency in seconds (as per portal). /// public const string NineHundred = "900"; + + /// + /// Replication type - async. + /// + public const string Sync = "Sync"; + + /// + /// Replication type - async. + /// + public const string Async = "Async"; } /// @@ -525,6 +543,11 @@ public ASRProtectionProfile(ProtectionProfile profile) this.HyperVReplicaProviderSettingsObject = new HyperVReplicaProviderSettings(); this.HyperVReplicaProviderSettingsObject.AssociationDetail = new List(); } + else if (profile.ReplicationProvider == Constants.San) + { + this.SanProviderSettingsObject = new SanProviderSettings(); + this.SanProviderSettingsObject.AssociationDetail = new List(); + } foreach (var profileAssosicationDetail in profile.AssociationDetail) { @@ -543,6 +566,10 @@ public ASRProtectionProfile(ProtectionProfile profile) { this.HyperVReplicaProviderSettingsObject.AssociationDetail.Add(asrProfileDetail); } + else if (profile.ReplicationProvider == Constants.San) + { + this.SanProviderSettingsObject.AssociationDetail.Add(asrProfileDetail); + } } if (profile.ReplicationProvider == Constants.HyperVReplicaAzure) @@ -565,6 +592,7 @@ public ASRProtectionProfile(ProtectionProfile profile) = details.RecoveryPointHistoryDuration; this.HyperVReplicaAzureProviderSettingsObject.CanDissociate = profile.CanDissociate; + this.HyperVReplicaAzureProviderSettingsObject.EncryptStoredData = details.EncryptionEnabled; } else if (profile.ReplicationProvider == Constants.HyperVReplica) { @@ -589,6 +617,26 @@ public ASRProtectionProfile(ProtectionProfile profile) this.HyperVReplicaProviderSettingsObject.ReplicationStartTime = details.OnlineReplicationStartTime; this.HyperVReplicaProviderSettingsObject.CanDissociate = profile.CanDissociate; } + else if (profile.ReplicationProvider == Constants.San) + { + // San does not have a protection profile associated with it for now. So ReplicationProviderSetting might be empty. + // If we are unable to deserialze, ignore it for now. + try + { + var details = DataContractUtils.Deserialize( + profile.ReplicationProviderSetting); + this.SanProviderSettingsObject.CloudId = details.CloudId; + this.SanProviderSettingsObject.RemoteCloudId = details.RemoteCloudId; + this.SanProviderSettingsObject.ArrayUniqueId = details.ArrayUniqueId; + this.SanProviderSettingsObject.RemoteArrayUniqueId = details.RemoteArrayUniqueId; + } + catch + { + // ignore. + } + + this.SanProviderSettingsObject.CanDissociate = profile.CanDissociate; + } this.ID = profile.ID; this.Name = profile.Name; @@ -607,7 +655,7 @@ public ASRProtectionProfile(ProtectionProfile profile) public string ID { get; set; } /// - /// Gets or sets Replication Type (HyperVReplica, HyperVReplicaAzure) + /// Gets or sets Replication Type (HyperVReplica, HyperVReplicaAzure, San) /// public string ReplicationProvider { get; set; } @@ -621,6 +669,11 @@ public ASRProtectionProfile(ProtectionProfile profile) /// public HyperVReplicaAzureProviderSettings HyperVReplicaAzureProviderSettingsObject { get; set; } + /// + /// Gets or sets SanProviderSettings + /// + public SanProviderSettings SanProviderSettingsObject { get; set; } + #endregion Properties } @@ -861,14 +914,69 @@ public ASRProtectionEntity(ProtectionEntity pe) if (!string.IsNullOrWhiteSpace(pe.ReplicationProviderSettings)) { - AzureVmDiskDetails diskDetails; - DataContractUtils.Deserialize( - pe.ReplicationProviderSettings, out diskDetails); - - this.Disks = diskDetails.Disks; - this.OSDiskId = diskDetails.VHDId; - this.OSDiskName = diskDetails.OsDisk; - this.OS = diskDetails.OsType; + if (pe.ReplicationProvider == Constants.HyperVReplicaAzure) + { + ReplicationProviderSpecificSettings providerDetails; + DataContractUtils.Deserialize( + pe.ReplicationProviderSettings, out providerDetails); + + this.RecoveryAzureVMName = providerDetails.VMProperties.RecoveryAzureVMName; + this.RecoveryAzureVMSize = providerDetails.VMProperties.RecoveryAzureVMSize; + this.SelectedRecoveryAzureNetworkId = + providerDetails.VMProperties.SelectedRecoveryAzureNetworkId; + this.VMNics = new List(); + + // Missing Nic details on serializing, going with the below workaround. + XmlDocument xmlDoc = new XmlDocument(); + xmlDoc.LoadXml(pe.ReplicationProviderSettings); + XmlNodeList parentNode = xmlDoc.GetElementsByTagName("VMNicDetails"); + foreach (XmlNode childrenNode in parentNode) + { + VMNic vmnicDetails = new VMNic(); + foreach (XmlNode childNode in childrenNode.ChildNodes) + { + switch (childNode.Name) + { + case "NicId": + vmnicDetails.NicId = childNode.InnerText; + break; + case "VMSubnetName": + vmnicDetails.VMSubnetName = childNode.InnerText; + break; + case "VMNetworkName": + vmnicDetails.VMNetworkName = childNode.InnerText; + break; + case "RecoveryVMNetworkId": + vmnicDetails.RecoveryVMNetworkId = childNode.InnerText; + break; + case "RecoveryVMSubnetName": + vmnicDetails.RecoveryVMSubnetName = childNode.InnerText; + break; + case "ReplicaNicStaticIPAddress": + vmnicDetails.RecoveryNicStaticIPAddress = childNode.InnerText; + break; + } + } + + this.VMNics.Add(vmnicDetails); + } + + this.Disks = providerDetails.AzureVMDiskDetails.Disks; + this.OSDiskId = providerDetails.AzureVMDiskDetails.VHDId; + this.OSDiskName = providerDetails.AzureVMDiskDetails.OsDisk; + this.OS = providerDetails.AzureVMDiskDetails.OsType; + } + else + { + AzureVmDiskDetails diskDetails; + DataContractUtils.Deserialize( + pe.ReplicationProviderSettings, out diskDetails); + + this.Disks = diskDetails.Disks; + this.OSDiskId = diskDetails.VHDId; + this.OSDiskName = diskDetails.OsDisk; + this.OS = diskDetails.OsType; + } } if (pe.ProtectionProfile != null && @@ -1033,6 +1141,26 @@ public ASRProtectionEntity( /// Gets or sets Replication provider. /// public string ReplicationProvider { get; set; } + + /// + /// Gets or sets Recovery Azure VM Name + /// + public string RecoveryAzureVMName { get; set; } + + /// + /// Gets or sets the Recovery Azure VM size. + /// + public string RecoveryAzureVMSize { get; set; } + + /// + /// Gets or sets the selected recovery azure network Id. + /// + public string SelectedRecoveryAzureNetworkId { get; set; } + + /// + /// Gets or sets the list of VM NIC details. + /// + public List VMNics { get; set; } } /// @@ -1616,4 +1744,51 @@ public class VirtualHardDisk [DataMember] public string Name { get; set; } } + + /// + /// Partial details of a NIC of a VM. + /// + [DataContract(Namespace = "http://schemas.microsoft.com/windowsazure")] + [SuppressMessage( + "Microsoft.StyleCop.CSharp.MaintainabilityRules", + "SA1402:FileMayOnlyContainASingleClass", + Justification = "Keeping all related classes together.")] + public class VMNic + { + /// + /// Gets or sets ID of the NIC. + /// + [DataMember] + public string NicId { get; set; } + + /// + /// Gets or sets Name of the VM subnet. + /// + [DataMember] + public string VMSubnetName { get; set; } + + /// + /// Gets or sets Name of the VM network. + /// + [DataMember] + public string VMNetworkName { get; set; } + + /// + /// Gets or sets Id of the recovery VM Network. + /// + [DataMember] + public string RecoveryVMNetworkId { get; set; } + + /// + /// Gets or sets the name of the recovery VM subnet. + /// + [DataMember] + public string RecoveryVMSubnetName { get; set; } + + /// + /// Gets or sets the static IP address of the replica NIC. + /// + [DataMember] + public string RecoveryNicStaticIPAddress { get; set; } + } } \ No newline at end of file diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSParameterSets.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSParameterSets.cs index a61b54f9c3f8..62b561ca7e20 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSParameterSets.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSParameterSets.cs @@ -178,5 +178,20 @@ internal static class ASRParameterSets /// Mapping between Enterprise to Azure. /// internal const string EnterpriseToAzure = "EnterpriseToAzure"; + + /// + /// Mapping between Enterprise to Enterprise San. + /// + internal const string EnterpriseToEnterpriseSan = "EnterpriseToEnterpriseSan"; + + /// + /// For Enable replication group parameter set. + /// + internal const string EnableReplicationGroup = "EnableReplicationGroup"; + + /// + /// For Disable replication group parameter set. + /// + internal const string DisableReplicationGroup = "DisableReplicationGroup"; } } \ No newline at end of file diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSStorageObjects.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSStorageObjects.cs index 1501ef1b94ea..f3861ae0c57d 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSStorageObjects.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSStorageObjects.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using System; +using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Runtime.Serialization; using Microsoft.WindowsAzure.Management.SiteRecovery.Models; @@ -48,6 +49,32 @@ public ASRStorage(AsrStorage storage) this.FabricObjectID = storage.FabricObjectID; this.FabricType = storage.FabricType; this.ServerId = storage.ServerID; + + if (this.Type == StorageType.Pool.ToString()) + { + this.StoragePools = storage.StoragePools; + } + } + + /// + /// Storage Type. + /// + public enum StorageType + { + /// + /// Unknown type. + /// + Other = 0, + + /// + /// Classification type. + /// + Classification, + + /// + /// Pool type. + /// + Pool, } #region Properties @@ -81,6 +108,11 @@ public ASRStorage(AsrStorage storage) /// public string FabricType { get; set; } + /// + /// Gets or sets storage pools for storage arrays. + /// + public IList StoragePools { get; set; } + #endregion } @@ -147,4 +179,68 @@ public ASRStorageMapping(StorageMapping storageMapping) public string RecoveryStorageName { get; set; } #endregion } + + /// + /// Azure Site Recovery Storage Pool Mapping. + /// + [SuppressMessage( + "Microsoft.StyleCop.CSharp.MaintainabilityRules", + "SA1402:FileMayOnlyContainASingleClass", + Justification = "Keeping all related objects together.")] + public class ASRStoragePoolMapping + { + /// + /// Initializes a new instance of the class. + /// + public ASRStoragePoolMapping() + { + } + + /// + /// Initializes a new instance of the class with required + /// parameters. + /// + /// Storage mapping object + public ASRStoragePoolMapping(StoragePoolMapping storagePoolMapping) + { + this.PrimaryServerId = storagePoolMapping.PrimaryServerId; + this.PrimaryStoragePoolId = storagePoolMapping.PrimaryStoragePoolId; + this.PrimaryStoragePoolName = storagePoolMapping.PrimaryStoragePoolName; + this.RecoveryServerId = storagePoolMapping.RecoveryServerId; + this.RecoveryStoragePoolId = storagePoolMapping.RecoveryStoragePoolId; + this.RecoveryStoragePoolName = storagePoolMapping.RecoveryStoragePoolName; + } + + #region Properties + /// + /// Gets or sets Primary server Id. + /// + public string PrimaryServerId { get; set; } + + /// + /// Gets or sets Primary storage pool Id. + /// + public string PrimaryStoragePoolId { get; set; } + + /// + /// Gets or sets Primary storage pool name. + /// + public string PrimaryStoragePoolName { get; set; } + + /// + /// Gets or sets Recovery server Id. + /// + public string RecoveryServerId { get; set; } + + /// + /// Gets or sets Recovery storage pool Id. + /// + public string RecoveryStoragePoolId { get; set; } + + /// + /// Gets or sets Recovery storage pool name. + /// + public string RecoveryStoragePoolName { get; set; } + #endregion + } } diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/SiteRecovery.Tests.dll b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/SiteRecovery.Tests.dll deleted file mode 100644 index ba072364e140..000000000000 Binary files a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/SiteRecovery.Tests.dll and /dev/null differ diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/Utilities.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/Utilities.cs index 023ffe5c21ff..0c6a632555b9 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/Utilities.cs +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/Utilities.cs @@ -155,5 +155,32 @@ public static string GenerateCloudServiceName(string region) region.Replace(' ', '-'), Constants.CloudServiceNameExtensionSuffix); } + + /// + /// Returns the cloud id given a container id. + /// + /// Protection Container Id + /// Cloud Id object + public static void GetCloudIdFromContainerId(string protectionContainerId, out string cloudId) + { + // The first part before '_' is server id. Rest will be cloud id. + var index = protectionContainerId.IndexOf('_'); + + if (index != -1) + { + try + { + cloudId = protectionContainerId.Substring(index + 1, protectionContainerId.Length - index - 1); + } + catch + { + cloudId = null; + } + } + else + { + cloudId = null; + } + } } } diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config index fc5bb09c6b7b..34ab1abf186c 100644 --- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config +++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/packages.config @@ -5,7 +5,7 @@ - + diff --git a/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 b/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 index e6411276d957..3f5993497097 100644 --- a/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 +++ b/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1 @@ -73,7 +73,8 @@ FormatsToProcess = @( '.\Compute\Microsoft.WindowsAzure.Commands.ServiceManagement.format.ps1xml', '.\Services\Microsoft.WindowsAzure.Commands.Profile.format.ps1xml', '.\Networking\Microsoft.WindowsAzure.Commands.ServiceManagement.Network.format.ps1xml', - '.\StorSimple\Microsoft.WindowsAzure.Commands.StorSimple.format.ps1xml' + '.\StorSimple\Microsoft.WindowsAzure.Commands.StorSimple.format.ps1xml', + '.\RecoveryServices\Microsoft.Azure.Commands.RecoveryServices.format.ps1xml' ) # Modules to import as nested modules of the module specified in ModuleToProcess