diff --git a/ChangeLog.txt b/ChangeLog.txt
index ddca4e235dcb..10bfe4d604ef 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -129,12 +129,6 @@
* 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 20c9aa1df074..381c13af438d 100644
--- a/setup/azurecmdfiles.wxi
+++ b/setup/azurecmdfiles.wxi
@@ -3086,9 +3086,6 @@
-
-
-
@@ -5051,7 +5048,6 @@
-
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 cdb5df1019c9..9fd59c89632d 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj
@@ -81,8 +81,9 @@
..\..\..\packages\Microsoft.WindowsAzure.Management.4.1.1\lib\net40\Microsoft.WindowsAzure.Management.dll
-
- ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.0.6.0-preview\lib\net40\Microsoft.WindowsAzure.Management.SiteRecovery.dll
+
+ False
+ ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.0.5.1-preview\lib\net40\Microsoft.WindowsAzure.Management.SiteRecovery.dll
False
@@ -91,9 +92,6 @@
..\..\..\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 4cbec3c12270..795fbe6f47f9 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.cs
@@ -155,11 +155,5 @@ 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 42ae642add7b..7dcb3c0c6f52 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.Role -eq "Primary")
+ if ($protectionContainer.ConfigurationStatus -eq "Configured")
{
$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 1 }
+ Assert-True { $servers.Count -gt 0 }
Assert-NotNull($servers)
foreach($server in $servers)
{
@@ -256,34 +256,25 @@ function Test-StorageMapping
}
# Enumerate 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)
+ $storages = Get-AzureSiteRecoveryStorage -Server $servers[0]
+ Assert-NotNull($storages)
+ Assert-True { $storages.Count -gt 0 }
+ foreach($storage in $storages)
{
Assert-NotNull($storage.Name)
Assert-NotNull($storage.ID)
}
# Enumerate StorageMappings
- $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
+ $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
Assert-True { $storageMappings.Count -eq 0 }
# Create StorageMapping
- $job = New-AzureSiteRecoveryStorageMapping -PrimaryStorage $storagesOnPrimary[0] -RecoveryStorage $storagesOnRecovery[0]
+ $job = New-AzureSiteRecoveryStorageMapping -PrimaryStorage $storages[0] -RecoveryStorage $storages[1]
WaitForJobCompletion -JobId $job.ID
# Enumerate StorageMappings
- $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
+ $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
Assert-NotNull($storageMappings)
Assert-True { $storageMappings.Count -eq 1 }
Assert-NotNull($storageMappings[0].PrimaryServerId)
@@ -305,7 +296,7 @@ function Test-StorageUnMapping
# Enumerate Servers
$servers = Get-AzureSiteRecoveryServer
- Assert-True { $servers.Count -gt 1 }
+ Assert-True { $servers.Count -gt 0 }
Assert-NotNull($servers)
foreach($server in $servers)
{
@@ -314,7 +305,7 @@ function Test-StorageUnMapping
}
# Enumerate StorageMappings
- $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
+ $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
Assert-NotNull($storageMappings)
Assert-True { $storageMappings.Count -eq 1 }
Assert-NotNull($storageMappings[0].PrimaryServerId)
@@ -327,7 +318,7 @@ function Test-StorageUnMapping
WaitForJobCompletion -JobId $job.ID
# Enumerate StorageMappings
- $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
+ $storageMappings = Get-AzureSiteRecoveryStorageMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
Assert-True { $storageMappings.Count -eq 0 }
}
@@ -344,7 +335,7 @@ function Test-NetworkMapping
# Enumerate Servers
$servers = Get-AzureSiteRecoveryServer
- Assert-True { $servers.Count -gt 1 }
+ Assert-True { $servers.Count -gt 0 }
Assert-NotNull($servers)
foreach($server in $servers)
{
@@ -353,34 +344,25 @@ function Test-NetworkMapping
}
# Enumerate 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)
+ $networks = Get-AzureSiteRecoveryNetwork -Server $servers[0]
+ Assert-NotNull($networks)
+ Assert-True { $networks.Count -gt 0 }
+ foreach($network in $networks)
{
Assert-NotNull($network.Name)
Assert-NotNull($network.ID)
}
# Enumerate NetworkMappings
- $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
+ $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
Assert-True { $networkMappings.Count -eq 0 }
# Create NetworkMapping
- $job = New-AzureSiteRecoveryNetworkMapping -PrimaryNetwork $networksOnPrimary[0] -RecoveryNetwork $networksOnRecovery[0]
+ $job = New-AzureSiteRecoveryNetworkMapping -PrimaryNetwork $networks[0] -RecoveryNetwork $networks[1]
WaitForJobCompletion -JobId $job.ID
# Enumerate NetworkMappings
- $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
+ $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
Assert-NotNull($networkMappings)
Assert-True { $networkMappings.Count -eq 1 }
Assert-NotNull($networkMappings[0].PrimaryServerId)
@@ -468,7 +450,7 @@ function Test-NetworkUnMapping
# Enumerate Servers
$servers = Get-AzureSiteRecoveryServer
- Assert-True { $servers.Count -gt 1 }
+ Assert-True { $servers.Count -gt 0 }
Assert-NotNull($servers)
foreach($server in $servers)
{
@@ -477,7 +459,7 @@ function Test-NetworkUnMapping
}
# Enumerate NetworkMappings
- $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
+ $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
Assert-NotNull($networkMappings)
Assert-True { $networkMappings.Count -eq 1 }
Assert-NotNull($networkMappings[0].PrimaryServerId)
@@ -492,7 +474,7 @@ function Test-NetworkUnMapping
WaitForJobCompletion -JobId $job.ID
# Enumerate NetworkMappings
- $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[1]
+ $networkMappings = Get-AzureSiteRecoveryNetworkMapping -PrimaryServer $servers[0] -RecoveryServer $servers[0]
Assert-True { $networkMappings.Count -eq 0 }
}
@@ -1160,7 +1142,7 @@ function Test-EnableProtection
# Validate_EnableProtection_WaitForCanFailover
if ($Validate_EnableProtection_WaitForCanFailover -eq $true)
{
- WaitForCanFailover $protectionEntity.ProtectionContainerId $protectionEntity.ID 600
+ WaitForCanFailover $protectionEntity.ProtectionContainerId $protectionEntity.ID
}
return;
@@ -1224,171 +1206,23 @@ 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, [Int] $NumOfSecondsToWait = 120)
-
- $timeElapse = 0;
- $interval = 5;
+ param([string] $pcId, [string] $peId)
+ $count = 20
do
{
- Start-Sleep $interval
- $timeElapse = $timeElapse + $interval
+ Start-Sleep 5
$pes = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainerId $pcId;
- Assert-True { $timeElapse -lt $NumOfSecondsToWait } "Job did not reached desired state within $NumOfSecondsToWait seconds."
+ $count = $count -1;
+
+ Assert-True { $count -gt 0 } "Job did not reached desired state within 5*$count seconds."
+
} while(-not ($pes[0].CanFailover -eq $true))
}
@@ -1415,18 +1249,3 @@ 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 80ca1db130c2..8cf54d72be01 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/vaultSettings.vaultcredentials
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/vaultSettings.vaultcredentials
@@ -1 +1,17 @@
-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
+
+
+ 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
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 c6f92e46347f..53a8c4bb4fad 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": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -16,34 +16,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "212f1bbcbc33397a90a859bcc8429139"
+ "334fdf1ad69fceee879f79e713de00a5"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:08:53 GMT"
+ "Mon, 23 Feb 2015 15:05:22 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -57,34 +57,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "7e210873e030301696f3657bbbdd672f"
+ "75dd6e349783c4fa94345c5f252fb0a2"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:08:54 GMT"
+ "Mon, 23 Feb 2015 15:05:23 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -98,34 +98,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "86a479af4df1345cb8b51c213c91a377"
+ "c9987cd9eaddcce8aaa6a5264cee9b2b"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:08:59 GMT"
+ "Mon, 23 Feb 2015 15:05:29 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -139,34 +139,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "9d618ec0ade13693a23c36adcc78dab4"
+ "03822990adc1c432af40232928c50e7a"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:09:10 GMT"
+ "Mon, 23 Feb 2015 15:05:37 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -180,34 +180,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "7018de3da5b23c97b812cfa01483a0e3"
+ "85b33729332ec141860fe4d44711a255"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:09:18 GMT"
+ "Mon, 23 Feb 2015 15:05:46 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -221,34 +221,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "619be7dcf4fe3dad9ba2e0a765dfddad"
+ "8713a2ba1506ce93a916abd9f5d46902"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:09:28 GMT"
+ "Mon, 23 Feb 2015 15:05:53 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -262,34 +262,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "faeaea80a11d3440a18b2b30667fa2a7"
+ "a06405d33d09cdc992cf9b5694c66091"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:09:37 GMT"
+ "Mon, 23 Feb 2015 15:06:01 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -303,34 +303,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "8512fa39652439818048b73e9b6e1f52"
+ "e018563c9b62ce10902db65c70c41f5f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:09:44 GMT"
+ "Mon, 23 Feb 2015 15:06:08 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -344,34 +344,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "302a7cabbf0a32558f3caab52746ab09"
+ "b46d871773f2c696a512978bd611662f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:09:53 GMT"
+ "Mon, 23 Feb 2015 15:06:15 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -385,34 +385,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "bf7aa3f896253b65aff8f3803872ed08"
+ "56d93bea6316c6fcbe3bc75897d10073"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:10:03 GMT"
+ "Mon, 23 Feb 2015 15:06:23 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -426,34 +426,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "68989f0004653a26b743412b0bfa8ece"
+ "08b28dc62655c9f49559e55e029b43b5"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:10:12 GMT"
+ "Mon, 23 Feb 2015 15:06:31 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -467,34 +467,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "42962f21cd13321589f7f9ded5ce913d"
+ "da0373bd6184cdb5974707bc6792bbac"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:10:22 GMT"
+ "Mon, 23 Feb 2015 15:06:38 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -508,34 +508,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "303a46b3818835a1a831051b164e873f"
+ "a4403f11a2f9cacb96dfe23191d0c4ae"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:10:31 GMT"
+ "Mon, 23 Feb 2015 15:06:46 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -549,34 +549,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "66d593cf76ff3c578f75ab1cc995d625"
+ "727a321b9a9dc7e3baadf46eb944425a"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:10:40 GMT"
+ "Mon, 23 Feb 2015 15:06:53 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -590,34 +590,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "42929e8e425d378bb402c01ddb3ed981"
+ "747ca88866b6c620a8f6be6dd4f34b8f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:10:49 GMT"
+ "Mon, 23 Feb 2015 15:07:01 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -631,34 +631,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "baad5c66a3a63ab5b2ecdede587c8058"
+ "c4b140ea7ce7cf458af051ee5cbe7159"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:10:57 GMT"
+ "Mon, 23 Feb 2015 15:07:08 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -672,34 +672,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "3d9a6e3d0c603568b957af7b29b35de1"
+ "5e021593dbcdc383a71d599ea730e775"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:11:07 GMT"
+ "Mon, 23 Feb 2015 15:07:16 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -713,34 +713,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "dcb907d49df6301bb59c63eba3b48430"
+ "76304f1b345fc02cbc147a2ed775311e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:11:16 GMT"
+ "Mon, 23 Feb 2015 15:07:23 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -754,34 +754,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "ff5ad5b70aa1361abd4713fcaef7aa99"
+ "bbbc098700adcdb195e6ad123732a571"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:11:24 GMT"
+ "Mon, 23 Feb 2015 15:07:31 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -795,34 +795,116 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "6b2c48717bbe328aa1d5405dd77fdc36"
+ "c4f4db536efecb338d1be8bad3afab63"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:11:28 GMT"
+ "Mon, 23 Feb 2015 15:07:38 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/ProtectionContainers?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1Byb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "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 \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 \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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -830,7 +912,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "68848f6d-d0b8-4679-a624-9f0cdbfff66a-2015-04-16 19:08:55Z-P"
+ "fe3a8086-dbe4-4b89-aa41-b402c656bd89-2015-02-23 15:05:24Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -839,10 +921,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
- "912"
+ "2814"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -857,20 +939,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "68848f6d-d0b8-4679-a624-9f0cdbfff66a-2015-04-16 19:08:55Z-P"
+ "fe3a8086-dbe4-4b89-aa41-b402c656bd89-2015-02-23 15:05:24Z-P"
],
"x-ms-request-id": [
- "83ba01c2ac463356ab54e00f3b4b5c54"
+ "5f3e15546504c177bbedd9205ca7eb3e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:08:58 GMT"
+ "Mon, 23 Feb 2015 15:05:27 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -883,25 +965,149 @@
"StatusCode": 200
},
{
- "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==",
+ "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==",
"RequestMethod": "POST",
- "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",
+ "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",
"RequestHeaders": {
"Content-Type": [
"application/xml"
],
"Content-Length": [
- "1608"
+ "1598"
],
"Accept": [
"application/xml"
],
"Agent-Authentication": [
- "{\"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\":{}}"
+ "{\"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"
],
"x-ms-client-request-id": [
- "66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P"
+ "16586ff0-b917-4a4b-87c0-4f11a9bc1927-2015-02-23 15:05:46Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -910,10 +1116,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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": [
- "2519"
+ "2501"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -928,20 +1134,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "66d0dd49-e221-468f-99e8-f82ed4cf63fe-2015-04-16 19:09:00Z-P"
+ "16586ff0-b917-4a4b-87c0-4f11a9bc1927-2015-02-23 15:05:46Z-P"
],
"x-ms-request-id": [
- "c51d6b1fdb0938bca1d468d4cd3b272d"
+ "6ca1e7d743bccd2f89d6655cd6e9bc43"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:09:04 GMT"
+ "Mon, 23 Feb 2015 15:05:48 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -954,8 +1160,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -963,7 +1169,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "f7701824-0173-43f0-bc70-03522b0beb4e-2015-04-16 19:09:10Z-P"
+ "1e1aa957-0d06-4abf-bb7f-eb73a4989f9c-2015-02-23 15:05:54Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -972,10 +1178,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14194"
+ "14177"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -990,20 +1196,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "f7701824-0173-43f0-bc70-03522b0beb4e-2015-04-16 19:09:10Z-P"
+ "1e1aa957-0d06-4abf-bb7f-eb73a4989f9c-2015-02-23 15:05:54Z-P"
],
"x-ms-request-id": [
- "a3c13e6035483a62bf4d034587f00b2f"
+ "67bd9d18c315cc0d9986c2b95ac7dc36"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:09:12 GMT"
+ "Mon, 23 Feb 2015 15:05:55 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1016,8 +1222,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1025,7 +1231,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "c90321c9-0cf2-4d84-b6d6-67877777f107-2015-04-16 19:09:19Z-P"
+ "ffa5aabf-9666-4f96-ba61-da91baa4e266-2015-02-23 15:06:02Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1034,10 +1240,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14194"
+ "14177"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1052,20 +1258,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "c90321c9-0cf2-4d84-b6d6-67877777f107-2015-04-16 19:09:19Z-P"
+ "ffa5aabf-9666-4f96-ba61-da91baa4e266-2015-02-23 15:06:02Z-P"
],
"x-ms-request-id": [
- "40835dba06493d8399bdcb05b85ce51e"
+ "c479be42d7e0cf4ea18d7fd5e5d3eae1"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:09:21 GMT"
+ "Mon, 23 Feb 2015 15:06:02 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1078,8 +1284,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1087,7 +1293,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "c3781fd7-315b-423c-bf95-ff25e846a9ff-2015-04-16 19:09:28Z-P"
+ "548f7515-8e97-41d0-88ec-6feb2446a35c-2015-02-23 15:06:09Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1096,10 +1302,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14194"
+ "14177"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1114,20 +1320,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "c3781fd7-315b-423c-bf95-ff25e846a9ff-2015-04-16 19:09:28Z-P"
+ "548f7515-8e97-41d0-88ec-6feb2446a35c-2015-02-23 15:06:09Z-P"
],
"x-ms-request-id": [
- "6c55b66646ba3cb0ace6b68eafcf9354"
+ "1729097f8485c71ba100f1a2b73b169c"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:09:30 GMT"
+ "Mon, 23 Feb 2015 15:06:10 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1140,8 +1346,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1149,7 +1355,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "d4393756-ec3f-447e-8b88-a95191693a7f-2015-04-16 19:09:37Z-P"
+ "2a4423cc-489e-4385-a7b8-1fcbceee11fa-2015-02-23 15:06:17Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1158,10 +1364,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14194"
+ "14177"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1176,20 +1382,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "d4393756-ec3f-447e-8b88-a95191693a7f-2015-04-16 19:09:37Z-P"
+ "2a4423cc-489e-4385-a7b8-1fcbceee11fa-2015-02-23 15:06:17Z-P"
],
"x-ms-request-id": [
- "6f446d7b2cbc3203ae9cadce06f05fe2"
+ "4bd544ed18abcb5aa3fe2d8c7f74c8ee"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:09:38 GMT"
+ "Mon, 23 Feb 2015 15:06:17 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1202,8 +1408,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1211,7 +1417,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "4d27e7c7-ec4a-4fa0-aa8e-9688180b9d7e-2015-04-16 19:09:45Z-P"
+ "1851c8d3-1c60-4df8-a670-8bee11c0bce7-2015-02-23 15:06:25Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1220,10 +1426,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14194"
+ "14177"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1238,20 +1444,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "4d27e7c7-ec4a-4fa0-aa8e-9688180b9d7e-2015-04-16 19:09:45Z-P"
+ "1851c8d3-1c60-4df8-a670-8bee11c0bce7-2015-02-23 15:06:25Z-P"
],
"x-ms-request-id": [
- "f40d28ed9b583ed6a5ac6170f1553e2c"
+ "e521ad428324cd408165758cee48b7e6"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:09:48 GMT"
+ "Mon, 23 Feb 2015 15:06:25 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1264,8 +1470,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1273,7 +1479,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "be6a24a3-ec4d-4bb6-83ed-2e6c5c1dc418-2015-04-16 19:09:54Z-P"
+ "ef26c28a-005a-40c8-b561-fe5ac2b065a0-2015-02-23 15:06:32Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1282,10 +1488,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14194"
+ "14193"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1300,20 +1506,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "be6a24a3-ec4d-4bb6-83ed-2e6c5c1dc418-2015-04-16 19:09:54Z-P"
+ "ef26c28a-005a-40c8-b561-fe5ac2b065a0-2015-02-23 15:06:32Z-P"
],
"x-ms-request-id": [
- "f93cd2856c483249bf4320cd9b6480e9"
+ "3fe8b46c1a96cc25b0a7006f0e1b71ac"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:09:56 GMT"
+ "Mon, 23 Feb 2015 15:06:32 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1326,8 +1532,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1335,7 +1541,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "793e2266-21d2-4781-9fc2-4e7e4967c710-2015-04-16 19:10:03Z-P"
+ "aa877d7a-e2a3-483b-a844-3345ba2c93a5-2015-02-23 15:06:39Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1344,10 +1550,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14210"
+ "14193"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1362,20 +1568,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "793e2266-21d2-4781-9fc2-4e7e4967c710-2015-04-16 19:10:03Z-P"
+ "aa877d7a-e2a3-483b-a844-3345ba2c93a5-2015-02-23 15:06:39Z-P"
],
"x-ms-request-id": [
- "c73827572faf325fbd7064a6a5f159da"
+ "e7e6814fa61dc69d9797e07b98255c3c"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:10:06 GMT"
+ "Mon, 23 Feb 2015 15:06:40 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1388,8 +1594,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1397,7 +1603,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "a7e22ed5-1ec8-4f47-a375-4cc71ca889de-2015-04-16 19:10:12Z-P"
+ "333f15b0-2f30-4e34-8788-1cd032c32c17-2015-02-23 15:06:47Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1406,10 +1612,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14226"
+ "14193"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1424,20 +1630,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "a7e22ed5-1ec8-4f47-a375-4cc71ca889de-2015-04-16 19:10:12Z-P"
+ "333f15b0-2f30-4e34-8788-1cd032c32c17-2015-02-23 15:06:47Z-P"
],
"x-ms-request-id": [
- "7bf5df4b117a36dbb7c98b6fb205bed7"
+ "3049ecfa9f03ce6a845aa15bfebd8c10"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:10:15 GMT"
+ "Mon, 23 Feb 2015 15:06:47 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1450,8 +1656,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1459,7 +1665,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "166c9500-b4c5-40c6-8bda-ba4f189c12d8-2015-04-16 19:10:22Z-P"
+ "b381418e-552a-4b4d-9c3d-577480cb57e9-2015-02-23 15:06:54Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1468,10 +1674,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14231"
+ "14209"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1486,20 +1692,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "166c9500-b4c5-40c6-8bda-ba4f189c12d8-2015-04-16 19:10:22Z-P"
+ "b381418e-552a-4b4d-9c3d-577480cb57e9-2015-02-23 15:06:54Z-P"
],
"x-ms-request-id": [
- "886bebcbfe7b3670b15553159f4a5eb5"
+ "8b1cde7e6d72cb35832c9a87af82e410"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:10:24 GMT"
+ "Mon, 23 Feb 2015 15:06:54 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1512,8 +1718,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1521,7 +1727,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "a5185359-2dc7-45be-b223-5656710ab281-2015-04-16 19:10:31Z-P"
+ "735cd077-32a3-4306-bd95-107bdaa46d02-2015-02-23 15:07:02Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1530,10 +1736,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14231"
+ "14214"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1548,20 +1754,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "a5185359-2dc7-45be-b223-5656710ab281-2015-04-16 19:10:31Z-P"
+ "735cd077-32a3-4306-bd95-107bdaa46d02-2015-02-23 15:07:02Z-P"
],
"x-ms-request-id": [
- "dade720da71b3698969f21711a1fd03d"
+ "6ef9058cb6a7c4a788b7b078a693a833"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:10:33 GMT"
+ "Mon, 23 Feb 2015 15:07:03 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1574,8 +1780,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1583,7 +1789,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "000deae2-3d70-4523-a30d-7baa2e55eb00-2015-04-16 19:10:41Z-P"
+ "a3a63011-5fe2-48b1-a39b-609483a1b753-2015-02-23 15:07:09Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1592,10 +1798,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14258"
+ "14214"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1610,20 +1816,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "000deae2-3d70-4523-a30d-7baa2e55eb00-2015-04-16 19:10:41Z-P"
+ "a3a63011-5fe2-48b1-a39b-609483a1b753-2015-02-23 15:07:09Z-P"
],
"x-ms-request-id": [
- "7ac9c3ea4a2d31388baaf2e00c9f7dfe"
+ "5f293a9e110accb0b12000ea351924f8"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:10:42 GMT"
+ "Mon, 23 Feb 2015 15:07:10 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1636,8 +1842,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1645,7 +1851,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "189405e3-30e2-450e-9d1c-67a51d37ad43-2015-04-16 19:10:49Z-P"
+ "c3d4a611-182a-430b-93ea-0c8d6acd3613-2015-02-23 15:07:16Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1654,10 +1860,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14273"
+ "14214"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1672,20 +1878,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "189405e3-30e2-450e-9d1c-67a51d37ad43-2015-04-16 19:10:49Z-P"
+ "c3d4a611-182a-430b-93ea-0c8d6acd3613-2015-02-23 15:07:16Z-P"
],
"x-ms-request-id": [
- "6b70456d37f73b3fa65afd37f0f76a9c"
+ "6ac8bf9a1106cfddb7c6748aab2fde71"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:10:51 GMT"
+ "Mon, 23 Feb 2015 15:07:17 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1698,8 +1904,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1707,7 +1913,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "b57ec2f0-455b-4ad4-82a2-c5413ec736e4-2015-04-16 19:10:57Z-P"
+ "1cfa23bf-2b55-4de3-b237-ef7e3b7e5078-2015-02-23 15:07:24Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1716,10 +1922,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14294"
+ "14240"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1734,20 +1940,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "b57ec2f0-455b-4ad4-82a2-c5413ec736e4-2015-04-16 19:10:57Z-P"
+ "1cfa23bf-2b55-4de3-b237-ef7e3b7e5078-2015-02-23 15:07:24Z-P"
],
"x-ms-request-id": [
- "bd76370c23433c3080e322a85dbaa4e8"
+ "8fb0ee1373a3c0e783ce51e56e05de86"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:11:00 GMT"
+ "Mon, 23 Feb 2015 15:07:24 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1760,8 +1966,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1769,7 +1975,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "ca063eff-e0ae-43e6-8f22-106608e313a3-2015-04-16 19:11:07Z-P"
+ "fe84b2cd-dba6-4bee-ac52-fda7f07a3f2b-2015-02-23 15:07:31Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1778,10 +1984,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14294"
+ "14256"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1796,20 +2002,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "ca063eff-e0ae-43e6-8f22-106608e313a3-2015-04-16 19:11:07Z-P"
+ "fe84b2cd-dba6-4bee-ac52-fda7f07a3f2b-2015-02-23 15:07:31Z-P"
],
"x-ms-request-id": [
- "022c3fdf92e9350899ef0d7c10db62e3"
+ "0b8b83ebffe1c1df959af35faadc15f6"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:11:09 GMT"
+ "Mon, 23 Feb 2015 15:07:31 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1822,8 +2028,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1831,7 +2037,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "226e798a-6c44-4927-9d1a-de8a1d0cdd19-2015-04-16 19:11:16Z-P"
+ "280cf55f-4ef1-4cdd-8361-5727497d621f-2015-02-23 15:07:39Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1840,10 +2046,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14294"
+ "14271"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1858,20 +2064,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "226e798a-6c44-4927-9d1a-de8a1d0cdd19-2015-04-16 19:11:16Z-P"
+ "280cf55f-4ef1-4cdd-8361-5727497d621f-2015-02-23 15:07:39Z-P"
],
"x-ms-request-id": [
- "732c1f3ad8fb38a08be828e3226c6f6d"
+ "01c3742c8bdac323a1a7b84276562a2e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:11:17 GMT"
+ "Mon, 23 Feb 2015 15:07:40 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1884,8 +2090,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1893,7 +2099,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "832acebe-5e42-44a9-8fed-aa211db48331-2015-04-16 19:11:24Z-P"
+ "bd27590b-1edf-4f97-a569-f38e24325b8a-2015-02-23 15:07:47Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1902,10 +2108,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14308"
+ "14290"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1920,20 +2126,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "832acebe-5e42-44a9-8fed-aa211db48331-2015-04-16 19:11:24Z-P"
+ "bd27590b-1edf-4f97-a569-f38e24325b8a-2015-02-23 15:07:47Z-P"
],
"x-ms-request-id": [
- "00e5ffad4dc937cf87dbb79a4015a1d4"
+ "d537db9df140c732b85a2e31670df81f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:11:26 GMT"
+ "Mon, 23 Feb 2015 15:07:48 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -1946,8 +2152,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -1955,7 +2161,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "7d672df4-3d05-4bed-97d2-4d62403028ce-2015-04-16 19:11:28Z-P"
+ "4c2d94f3-8ca1-47d7-89ce-bbfc9cfb74c1-2015-02-23 15:07:49Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -1964,10 +2170,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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",
"ResponseHeaders": {
"Content-Length": [
- "14308"
+ "14290"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -1982,20 +2188,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "7d672df4-3d05-4bed-97d2-4d62403028ce-2015-04-16 19:11:28Z-P"
+ "4c2d94f3-8ca1-47d7-89ce-bbfc9cfb74c1-2015-02-23 15:07:49Z-P"
],
"x-ms-request-id": [
- "fdd7355a3c3f3e73bdae862fd57d3e43"
+ "7b0b2be6e69bce7fa790135ee31d7dc8"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 19:11:30 GMT"
+ "Mon, 23 Feb 2015 15:07:50 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -2010,6 +2216,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524"
+ "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba"
}
}
\ 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 bec286d0b61f..5eaede5d1d9e 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": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -16,34 +16,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "72baf59cee7932f0b2ecf07ff54a70e6"
+ "9a70757f6ca8c7c4acfedd3aad5189ff"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:55:36 GMT"
+ "Mon, 23 Feb 2015 15:14:33 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -57,34 +57,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "de09bd88631c38a29e73fed71ff2da59"
+ "2fa5494425ddcf7f81701efd94d99983"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:55:37 GMT"
+ "Mon, 23 Feb 2015 15:14:35 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -98,34 +98,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "c8b65f5d82c23223905658427eff4bf8"
+ "556d67d7ec4ac8b8b2de981a53b76c45"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:55:41 GMT"
+ "Mon, 23 Feb 2015 15:14:40 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -139,34 +139,1588 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "a8a5635118c93d3a8702588ebea09f7a"
+ "67157058d486c0fa98a02a8077f76d62"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:55:44 GMT"
+ "Mon, 23 Feb 2015 15:14:43 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/ProtectionContainers?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1Byb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "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 \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 \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 \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 \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 \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 \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 \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 \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 \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 \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 \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 \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 \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 \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 \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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -174,7 +1728,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "b1c36e18-88fc-436a-ab10-fcc5ecdb3e03-2015-04-16 14:55:37Z-P"
+ "f276dbc7-c853-4ba2-be35-fa3cae57edf4-2015-02-23 15:16:21Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -183,10 +1737,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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": [
- "4276"
+ "14383"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -201,20 +1755,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "b1c36e18-88fc-436a-ab10-fcc5ecdb3e03-2015-04-16 14:55:37Z-P"
+ "f276dbc7-c853-4ba2-be35-fa3cae57edf4-2015-02-23 15:16:21Z-P"
],
"x-ms-request-id": [
- "7325b66ba1a436fdab7ce52edb4950c2"
+ "342e7c149ddfce348a5b1aa895af40a8"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:55:40 GMT"
+ "Mon, 23 Feb 2015 15:16:22 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -227,8 +1781,8 @@
"StatusCode": 200
},
{
- "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==",
+ "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": {
@@ -236,7 +1790,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "5b115ba4-c12d-4e60-b33e-0784a45bd1bb-2015-04-16 14:55:41Z-P"
+ "e73006d8-7ca2-4f0e-948d-3e3b3962e8fd-2015-02-23 15:16:29Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -245,10 +1799,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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": [
- "3842"
+ "14397"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -263,20 +1817,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "5b115ba4-c12d-4e60-b33e-0784a45bd1bb-2015-04-16 14:55:41Z-P"
+ "e73006d8-7ca2-4f0e-948d-3e3b3962e8fd-2015-02-23 15:16:29Z-P"
],
"x-ms-request-id": [
- "fee54c1174393911970def31900efbd2"
+ "b7dff51592d7c6f68f4ee167dec8a209"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:55:42 GMT"
+ "Mon, 23 Feb 2015 15:16:30 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -289,8 +1843,8 @@
"StatusCode": 200
},
{
- "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==",
+ "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": {
@@ -298,7 +1852,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "240411f7-6c19-451e-8f56-90bb2d461a56-2015-04-16 14:55:44Z-P"
+ "8b4d2c19-3e32-4ddf-aa45-1f7dccf96ee7-2015-02-23 15:16:31Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -307,10 +1861,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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><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></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><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></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><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></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><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></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><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></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><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></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><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></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><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></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": [
- "479"
+ "14397"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -325,20 +1879,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "240411f7-6c19-451e-8f56-90bb2d461a56-2015-04-16 14:55:44Z-P"
+ "8b4d2c19-3e32-4ddf-aa45-1f7dccf96ee7-2015-02-23 15:16:31Z-P"
],
"x-ms-request-id": [
- "484474bb0e953ef78ae28652f69f02c6"
+ "8de72ecd4f05c2139850eef7ed914e73"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:55:45 GMT"
+ "Mon, 23 Feb 2015 15:16:32 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -353,6 +1907,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524"
+ "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba"
}
}
\ 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 6a78ce8abceb..0bca95e6abff 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": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -16,34 +16,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "f0bf18f109c832f7b84a60431174cc92"
+ "1d1019c17253c99f930f98a5ebdee220"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:35:10 GMT"
+ "Mon, 23 Feb 2015 14:59:34 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -57,34 +57,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "247034f5a4b337a1b18e62b99e25979f"
+ "f3673093ad3ccd0da603fb74e93cddfc"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:35:12 GMT"
+ "Mon, 23 Feb 2015 14:59:37 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -98,34 +98,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "be8bb5992b59352c8cb7ddc164cd0d0a"
+ "f0d5b33b4d2ec0d5961df25336e4626c"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:35:16 GMT"
+ "Mon, 23 Feb 2015 14:59:41 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"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==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -133,7 +133,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "0a4a9a09-9d9d-4144-bb86-4ce7a4614009-2015-04-16 14:35:12Z-P"
+ "b4c71df3-4bbb-4c8a-be79-cf1d1988f4fa-2015-02-23 14:59:38Z-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 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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
"929"
@@ -160,20 +160,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "0a4a9a09-9d9d-4144-bb86-4ce7a4614009-2015-04-16 14:35:12Z-P"
+ "b4c71df3-4bbb-4c8a-be79-cf1d1988f4fa-2015-02-23 14:59:38Z-P"
],
"x-ms-request-id": [
- "0632695554a937fa912537ceadc929f6"
+ "2665cd63b6efcd65b081c6afa7fe2297"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:35:14 GMT"
+ "Mon, 23 Feb 2015 14:59:41 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -186,8 +186,8 @@
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/ProtectionContainers?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1Byb3RlY3Rpb25Db250YWluZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "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": {
@@ -195,7 +195,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "90e5ca16-1ef7-4ef3-b9bd-f63de7aff664-2015-04-16 14:35:16Z-P"
+ "214e92eb-c0db-43a9-8a68-fe70cac119f6-2015-02-23 14:59:43Z-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 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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
- "912"
+ "2814"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -222,20 +222,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "90e5ca16-1ef7-4ef3-b9bd-f63de7aff664-2015-04-16 14:35:16Z-P"
+ "214e92eb-c0db-43a9-8a68-fe70cac119f6-2015-02-23 14:59:43Z-P"
],
"x-ms-request-id": [
- "85589337eae332baa93f28608d8cbcc5"
+ "8361915f4af8c08e9c21787ec37db8e3"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:35:17 GMT"
+ "Mon, 23 Feb 2015 14:59:44 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -250,6 +250,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524"
+ "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba"
}
}
\ 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 fd84bf58c878..2b91f0dd2fe7 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": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -16,34 +16,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "99fd12a291e1325284f730819654b49e"
+ "bed1e29f43efc01e902e597a5ed76b44"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:40:02 GMT"
+ "Mon, 23 Feb 2015 15:02:52 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -57,34 +57,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "96130731d9a73f0c96162af428a62f99"
+ "eefa17d596f5c249824c3b48b0bd1829"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:40:03 GMT"
+ "Mon, 23 Feb 2015 15:02:53 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -98,34 +98,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "e8f05977312b3228bff4807874582865"
+ "e8c485a901d7c516b6d618b6d3bcaac9"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:40:07 GMT"
+ "Mon, 23 Feb 2015 15:02:58 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -139,34 +139,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "4dd5815e2eb73c86ba5e7e68698abe61"
+ "979023e66a16c6d7ad0906fb836187ef"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:40:08 GMT"
+ "Mon, 23 Feb 2015 15:03:00 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -180,34 +180,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "1fe4b4c4506031cea124a9a8157db0de"
+ "2a830a0dfe41cc1bacd10c89ca20e54e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:40:11 GMT"
+ "Mon, 23 Feb 2015 15:03:03 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -221,34 +221,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "6437176130a733ddb687ccd5daaff64b"
+ "0aace19fe72dcf9ab5f724dc8ae7a31c"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:40:14 GMT"
+ "Mon, 23 Feb 2015 15:03:11 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -262,75 +262,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "8325c9339c853631b0d3c9250d9cd5cd"
+ "1790896318bcc93e911c4d3b6121475c"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:40:22 GMT"
+ "Mon, 23 Feb 2015 15:03:14 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "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 \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==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -338,7 +297,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "71b58f6e-81b5-4d89-bf03-f7d3216a70bd-2015-04-16 14:40:02Z-P"
+ "885c7b27-553b-4d06-ad76-8954543fd419-2015-02-23 15:02:55Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -347,7 +306,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
"929"
@@ -365,82 +324,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "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"
+ "885c7b27-553b-4d06-ad76-8954543fd419-2015-02-23 15:02:55Z-P"
],
"x-ms-request-id": [
- "ad82b2dc8313379cabb18a596577aef2"
+ "7f3807286690c37fa2a131ac652d02c5"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:40:07 GMT"
+ "Mon, 23 Feb 2015 15:02:57 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -453,8 +350,8 @@
"StatusCode": 200
},
{
- "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",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -462,7 +359,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "0a9ce194-f3df-4818-904a-f452c14fc258-2015-04-16 14:40:08Z-P"
+ "34558b4f-f3b1-407b-a0d1-9ba92ba53246-2015-02-23 15:02:59Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -471,10 +368,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
- "447"
+ "760"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -489,20 +386,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "0a9ce194-f3df-4818-904a-f452c14fc258-2015-04-16 14:40:08Z-P"
+ "34558b4f-f3b1-407b-a0d1-9ba92ba53246-2015-02-23 15:02:59Z-P"
],
"x-ms-request-id": [
- "2faa8b31f7393ae1a4b2417203af5c25"
+ "78a1d5fca77ac9b6b79887afd3cec23f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:40:09 GMT"
+ "Mon, 23 Feb 2015 15:03:00 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -515,8 +412,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -524,7 +421,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "2020051a-4471-4afe-be5b-a1001ffa5a0e-2015-04-16 14:40:11Z-P"
+ "420f6719-76ea-46a9-be0b-3fce956c0062-2015-02-23 15:03:02Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -551,20 +448,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "2020051a-4471-4afe-be5b-a1001ffa5a0e-2015-04-16 14:40:11Z-P"
+ "420f6719-76ea-46a9-be0b-3fce956c0062-2015-02-23 15:03:02Z-P"
],
"x-ms-request-id": [
- "0c3ec300a36934d4b61c6b4f223d3256"
+ "0206442e7db3c1c9a09dc9838ead65b7"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:40:12 GMT"
+ "Mon, 23 Feb 2015 15:03:01 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -577,8 +474,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -586,7 +483,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "6da6bf80-992a-4204-8add-0161f45d628b-2015-04-16 14:40:24Z-P"
+ "7c3767c4-389d-4e2f-b7f0-1e2697fbd1dd-2015-02-23 15:03:15Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -595,7 +492,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
"636"
@@ -613,20 +510,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "6da6bf80-992a-4204-8add-0161f45d628b-2015-04-16 14:40:24Z-P"
+ "7c3767c4-389d-4e2f-b7f0-1e2697fbd1dd-2015-02-23 15:03:15Z-P"
],
"x-ms-request-id": [
- "2e78071eb49a355db66bb891ade11784"
+ "e142680245e9c639b0b79e3fcd31ead6"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:40:25 GMT"
+ "Mon, 23 Feb 2015 15:03:15 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -639,10 +536,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/NetworkMappings?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEw",
+ "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",
"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>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",
+ "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",
"RequestHeaders": {
"Content-Type": [
"application/xml"
@@ -654,10 +551,10 @@
"application/xml"
],
"Agent-Authentication": [
- "{\"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\":{}}"
+ "{\"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\":{}}"
],
"x-ms-client-request-id": [
- "48cf9c11-1e50-4840-a855-05f50f86ddee-2015-04-16 14:40:13Z-P"
+ "4c5f59ab-3b97-4bb2-af68-002410f649f1-2015-02-23 15:03:04Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -666,7 +563,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
"629"
@@ -684,20 +581,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "48cf9c11-1e50-4840-a855-05f50f86ddee-2015-04-16 14:40:13Z-P"
+ "4c5f59ab-3b97-4bb2-af68-002410f649f1-2015-02-23 15:03:04Z-P"
],
"x-ms-request-id": [
- "ce4e6cabeb2132928ac07cc4a06315e2"
+ "10fa70dd4b69c93ebd6f4aa768511e94"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:40:14 GMT"
+ "Mon, 23 Feb 2015 15:03:05 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -710,8 +607,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -719,7 +616,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "65ba0ba9-2991-4d58-83c7-d60d1019db91-2015-04-16 14:40:21Z-P"
+ "ed91ac3a-49a6-4df4-9801-d90c607b39d1-2015-02-23 15:03:12Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -728,10 +625,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
- "2519"
+ "2511"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -746,20 +643,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "65ba0ba9-2991-4d58-83c7-d60d1019db91-2015-04-16 14:40:21Z-P"
+ "ed91ac3a-49a6-4df4-9801-d90c607b39d1-2015-02-23 15:03:12Z-P"
],
"x-ms-request-id": [
- "4082b0c10f6b3923b45459e535a1f365"
+ "c49157b86ec5c242ad05513294bbfed8"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:40:23 GMT"
+ "Mon, 23 Feb 2015 15:03:13 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -774,6 +671,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524"
+ "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba"
}
}
\ 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 00619a463815..2c7b940b79f8 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": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -16,34 +16,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "4598e16b288833298c924617e120898f"
+ "5950981ace69c748af318ac21ad99576"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:41:59 GMT"
+ "Mon, 23 Feb 2015 15:03:51 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -57,34 +57,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "11752a86440e3a4a8b43e29c752efe48"
+ "32e2eb0a6261c5e8bf8f5e3d5e075a86"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:42:01 GMT"
+ "Mon, 23 Feb 2015 15:03:52 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -98,34 +98,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "1f8803afa84738ff9aab6e899dc1a593"
+ "b1c3994fb8ccc815bf210fe7a7e6a06e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:42:04 GMT"
+ "Mon, 23 Feb 2015 15:03:57 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -139,34 +139,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "897cf97a664f3377978d9f3f66aa71f2"
+ "3a70e36e9385c4a6b182204bb4ca100e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:42:06 GMT"
+ "Mon, 23 Feb 2015 15:04:01 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -180,34 +180,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "4495d97508b0393f80559e57c717cc5a"
+ "2732a269a526c7f086fe311aec2a9157"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:42:14 GMT"
+ "Mon, 23 Feb 2015 15:04:10 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -221,34 +221,198 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "01c352f09d6f3209b95b62d574f3d1b3"
+ "07f14804b9bbcece9c3c034e6963a804"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:42:17 GMT"
+ "Mon, 23 Feb 2015 15:04:18 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"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==",
+ "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 \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 \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 \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 \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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -256,7 +420,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "a0ddaee5-e370-4062-a322-ebd57b2d9179-2015-04-16 14:42:00Z-P"
+ "a8683284-7e0f-48fa-912c-e62bbe7142fa-2015-02-23 15:03:54Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -265,7 +429,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
"929"
@@ -283,20 +447,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "a0ddaee5-e370-4062-a322-ebd57b2d9179-2015-04-16 14:42:00Z-P"
+ "a8683284-7e0f-48fa-912c-e62bbe7142fa-2015-02-23 15:03:54Z-P"
],
"x-ms-request-id": [
- "b3815e8572ca3f70bacb091c311c5fcf"
+ "857029ecfd32c588839592b685b5c581"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:42:02 GMT"
+ "Mon, 23 Feb 2015 15:03:56 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -309,8 +473,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -318,7 +482,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "c69ca432-8ea8-41ee-ba4d-0296d65c6442-2015-04-16 14:42:04Z-P"
+ "ce1bbe29-f099-4f69-b654-3459f0fd8400-2015-02-23 15:03:59Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -327,7 +491,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
"636"
@@ -345,20 +509,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "c69ca432-8ea8-41ee-ba4d-0296d65c6442-2015-04-16 14:42:04Z-P"
+ "ce1bbe29-f099-4f69-b654-3459f0fd8400-2015-02-23 15:03:59Z-P"
],
"x-ms-request-id": [
- "8797697ed9ef3a5c8fd98537c75703f7"
+ "8f357d53481cc46195d9bfbd90478386"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:42:04 GMT"
+ "Mon, 23 Feb 2015 15:04:00 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -371,8 +535,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -380,7 +544,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "78ce1c54-cd10-4228-91f5-1b9c52e7277f-2015-04-16 14:42:17Z-P"
+ "bdb07eae-7cbd-4a70-8e12-99b8abfbe67e-2015-02-23 15:04:46Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -407,20 +571,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "78ce1c54-cd10-4228-91f5-1b9c52e7277f-2015-04-16 14:42:17Z-P"
+ "bdb07eae-7cbd-4a70-8e12-99b8abfbe67e-2015-02-23 15:04:46Z-P"
],
"x-ms-request-id": [
- "f2db13c36aab37c5a3322bfb367ea0b5"
+ "0f5adb15898fc59ea5d8906ef4f04e0f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:42:18 GMT"
+ "Mon, 23 Feb 2015 15:04:46 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -433,10 +597,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/NetworkMappings?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL05ldHdvcmtNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEw",
+ "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",
"RequestMethod": "DELETE",
- "RequestBody": "\r\n 4c83e038-7abd-428b-9138-81065e2bb559\r\n d588e46b-1265-4053-9e20-4fc7daed20a5\r\n 8ec64e79-fb97-4837-a6b1-1968f3fcc63f\r\n",
+ "RequestBody": "\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n 037a6701-37be-406a-ace7-d6e80aaaf1f4\r\n 774859b0-1966-48cc-9df7-759c441b7a8c\r\n",
"RequestHeaders": {
"Content-Type": [
"application/xml"
@@ -448,10 +612,10 @@
"application/xml"
],
"Agent-Authentication": [
- "{\"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\":{}}"
+ "{\"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\":{}}"
],
"x-ms-client-request-id": [
- "7626edbc-53f3-416f-a014-182d19c1ac79-2015-04-16 14:42:07Z-P"
+ "c7ddcd0c-6067-4fb4-bb35-f417086baf6d-2015-02-23 15:04:02Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -460,7 +624,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
"629"
@@ -478,20 +642,268 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "7626edbc-53f3-416f-a014-182d19c1ac79-2015-04-16 14:42:07Z-P"
+ "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"
],
"x-ms-request-id": [
- "642f7b2ad48a36de88299d6c4df9ed90"
+ "77ff8d3f862bc87eb7a37915f0eeb25a"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:42:08 GMT"
+ "Mon, 23 Feb 2015 15:04:36 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -504,8 +916,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -513,7 +925,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "60194259-54d0-4dd5-9be1-008cfa0d4a0c-2015-04-16 14:42:14Z-P"
+ "33de4088-e876-47f3-997f-82da36a7f5ae-2015-02-23 15:04:43Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -522,10 +934,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
- "2531"
+ "2521"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -540,20 +952,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "60194259-54d0-4dd5-9be1-008cfa0d4a0c-2015-04-16 14:42:14Z-P"
+ "33de4088-e876-47f3-997f-82da36a7f5ae-2015-02-23 15:04:43Z-P"
],
"x-ms-request-id": [
- "e841507be57b3f81a1cbaea56c75d6dd"
+ "84c31df35788c464a630613e1c63047f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:42:15 GMT"
+ "Mon, 23 Feb 2015 15:04:44 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -568,6 +980,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524"
+ "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba"
}
}
\ 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 1b0b632bc8da..0db889df9c70 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": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -16,34 +16,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "31eac93eec34371d83eb544daf384f7f"
+ "7f5efd3075aace14afe78ac445d330be"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:39:17 GMT"
+ "Mon, 23 Feb 2015 15:00:18 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -57,34 +57,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "0795caf12ed333f3a36526ad144eae63"
+ "9f425bdb3b49c0d5aa76aa568df38642"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:39:19 GMT"
+ "Mon, 23 Feb 2015 15:00:20 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -98,34 +98,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "d40286d483e53ff3adc57c65e6532fec"
+ "a33f193f4a62c531968880d5f4cb5cdd"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:39:23 GMT"
+ "Mon, 23 Feb 2015 15:00:25 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -139,34 +139,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "4d740482122a3c75b322816632c1a296"
+ "d463ac152407cb11be6f820948e296c6"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:39:25 GMT"
+ "Mon, 23 Feb 2015 15:00:28 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -180,34 +180,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "1c27fd2007673bf3b447e802030ea6e0"
+ "7e683aab1ca2c853939fcb078687992c"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:39:28 GMT"
+ "Mon, 23 Feb 2015 15:00:31 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -221,34 +221,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "f01957f128e738918236d249dfd53b94"
+ "02fbbba99899c3b2aaffe98f210e6793"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:39:29 GMT"
+ "Mon, 23 Feb 2015 15:00:39 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -262,34 +262,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "3e183557b61f3b43bc238acdbe53e2c9"
+ "8383bcae912ac5688d533d51ab46933e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:39:38 GMT"
+ "Mon, 23 Feb 2015 15:00:47 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -303,34 +303,157 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "5d491d1acae13e498ebd03ad875587b4"
+ "10157021b0c5cb3795a055d0d17f22b4"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:39:41 GMT"
+ "Mon, 23 Feb 2015 15:00:56 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"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==",
+ "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 \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 \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 \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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -338,7 +461,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "792f2db8-15a5-4f5e-94af-0b0ec0640f2e-2015-04-16 14:39:19Z-P"
+ "236ce266-9ff1-4c75-ad66-c5a127dd7e93-2015-02-23 15:00:21Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -347,7 +470,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
"929"
@@ -365,20 +488,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "792f2db8-15a5-4f5e-94af-0b0ec0640f2e-2015-04-16 14:39:19Z-P"
+ "236ce266-9ff1-4c75-ad66-c5a127dd7e93-2015-02-23 15:00:21Z-P"
],
"x-ms-request-id": [
- "1064a655f7953739bffeb3e4bac9c60d"
+ "0ed3a2b059f6cf95887c2e02edba03e0"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:39:21 GMT"
+ "Mon, 23 Feb 2015 15:00:23 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -391,8 +514,8 @@
"StatusCode": 200
},
{
- "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",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -400,7 +523,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "9b607fa8-1002-44f1-9978-8d04f287c877-2015-04-16 14:39:23Z-P"
+ "6fde27e9-499a-4251-98fc-bc6f84f17ed8-2015-02-23 15:00:26Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -409,10 +532,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
- "456"
+ "720"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -427,20 +550,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "9b607fa8-1002-44f1-9978-8d04f287c877-2015-04-16 14:39:23Z-P"
+ "6fde27e9-499a-4251-98fc-bc6f84f17ed8-2015-02-23 15:00:26Z-P"
],
"x-ms-request-id": [
- "95479ae413073909ac5557ba58b66990"
+ "390a4c26f0d5cd4cbff22ded93140041"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:39:25 GMT"
+ "Mon, 23 Feb 2015 15:00:27 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -453,8 +576,8 @@
"StatusCode": 200
},
{
- "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",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -462,7 +585,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "6c9d653a-d6e5-4b35-9354-57ff2ccbbf40-2015-04-16 14:39:26Z-P"
+ "e2f1e299-ff11-4e3a-9a48-580481032149-2015-02-23 15:00:28Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -471,10 +594,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "455"
+ "126"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -489,20 +612,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "6c9d653a-d6e5-4b35-9354-57ff2ccbbf40-2015-04-16 14:39:26Z-P"
+ "e2f1e299-ff11-4e3a-9a48-580481032149-2015-02-23 15:00:28Z-P"
],
"x-ms-request-id": [
- "92428ab532d53379b2f043f99fb755e3"
+ "1950e74131f8c35f9cdeb2468c4d874e"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:39:26 GMT"
+ "Mon, 23 Feb 2015 15:00:29 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -515,8 +638,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -524,7 +647,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "ff8b5f0d-7f9a-417b-8828-198c31eaf7c3-2015-04-16 14:39:28Z-P"
+ "537330b4-357d-42f5-b7bb-57d762b4259e-2015-02-23 15:01:16Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -533,10 +656,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "ResponseBody": "",
+ "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": [
- "126"
+ "627"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -551,20 +674,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "ff8b5f0d-7f9a-417b-8828-198c31eaf7c3-2015-04-16 14:39:28Z-P"
+ "537330b4-357d-42f5-b7bb-57d762b4259e-2015-02-23 15:01:16Z-P"
],
"x-ms-request-id": [
- "6284c28a8be931fb9c4c6f00895f2385"
+ "a63ac1053847c5b8a1862952f0652c92"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:39:29 GMT"
+ "Mon, 23 Feb 2015 15:01:17 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -577,8 +700,79 @@
"StatusCode": 200
},
{
- "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=",
+ "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",
+ "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": [
+ "5c5fb455-9d4e-44f8-b824-c1829520bef2-2015-02-23 15:00:31Z-P"
+ ],
+ "x-ms-request-id": [
+ "595130f7582cc14b8faf9fa2f72859b5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 23 Feb 2015 15:00:33 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": {
@@ -586,7 +780,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "cf485d0c-49fe-4dd7-8874-dc61928cde58-2015-04-16 14:39:41Z-P"
+ "7b3106ff-b0e3-4d43-aef5-6565de5b3d7e-2015-02-23 15:00:40Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -595,10 +789,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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": [
- "627"
+ "2864"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -613,20 +807,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "cf485d0c-49fe-4dd7-8874-dc61928cde58-2015-04-16 14:39:41Z-P"
+ "7b3106ff-b0e3-4d43-aef5-6565de5b3d7e-2015-02-23 15:00:40Z-P"
],
"x-ms-request-id": [
- "a3ea0080dda836e3ad952d726ac82462"
+ "7a381aa43188c91c91f25b5a8782824c"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:39:42 GMT"
+ "Mon, 23 Feb 2015 15:00:40 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -639,25 +833,140 @@
"StatusCode": 200
},
{
- "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",
+ "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": {
- "Content-Type": [
+ "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": [
- "403"
+ "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"
],
- "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": [
+ "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"
+ ],
+ "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": [
- "8ee92d34-71ab-4314-a490-c341ce22e921-2015-04-16 14:39:30Z-P"
+ "6fad9fbc-5eeb-4fcd-88f7-222a0a706966-2015-02-23 15:01:04Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -666,10 +975,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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": [
- "2878"
+ "2864"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -684,20 +993,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "8ee92d34-71ab-4314-a490-c341ce22e921-2015-04-16 14:39:30Z-P"
+ "6fad9fbc-5eeb-4fcd-88f7-222a0a706966-2015-02-23 15:01:04Z-P"
],
"x-ms-request-id": [
- "5f38d511f8ba3c20a185343fd7344c0a"
+ "b4580805468acb36bab1afe5ea28580b"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:39:32 GMT"
+ "Mon, 23 Feb 2015 15:01:04 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -710,8 +1019,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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": {
@@ -719,7 +1028,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "02eaec47-5fb1-4e40-9e0e-e1f2088449ad-2015-04-16 14:39:39Z-P"
+ "bc17cf04-f302-40f3-81ae-a90868c076fa-2015-02-23 15:01:12Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -728,10 +1037,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
- "2917"
+ "2910"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -746,20 +1055,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "02eaec47-5fb1-4e40-9e0e-e1f2088449ad-2015-04-16 14:39:39Z-P"
+ "bc17cf04-f302-40f3-81ae-a90868c076fa-2015-02-23 15:01:12Z-P"
],
"x-ms-request-id": [
- "0335b0e3c0e434989234c8fd01da1094"
+ "f4f73c140963c6a49c1a69e571359f19"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:39:39 GMT"
+ "Mon, 23 Feb 2015 15:01:13 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -774,6 +1083,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524"
+ "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba"
}
}
\ 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 de0c11cee91c..5eb7d1512b48 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": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -16,34 +16,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "df5a45f3520b37319907cd2b3271732e"
+ "0d6a5f449ea4c702a944d4135076873b"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:41:19 GMT"
+ "Mon, 23 Feb 2015 15:01:53 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -57,34 +57,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "c99607ce844032dea00c3e3fec14a5e6"
+ "a922f6a331c8cb87906e44790c30ba0f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:41:20 GMT"
+ "Mon, 23 Feb 2015 15:01:55 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -98,34 +98,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "301986597bfd383b8811aed28a70769b"
+ "dedcece47528c79589fdbc829de8774b"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:41:23 GMT"
+ "Mon, 23 Feb 2015 15:01:59 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -139,34 +139,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "485b73ffd32733e8a6f1c500bd55bee3"
+ "6ee6c318f374c2628b4bea0f8e40e765"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:41:26 GMT"
+ "Mon, 23 Feb 2015 15:02:03 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -180,34 +180,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "f6b2f69a4878386d946949978025e63e"
+ "a7a613d2a540c8a88a4640340255b96b"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:41:34 GMT"
+ "Mon, 23 Feb 2015 15:02:10 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDQtMTA=",
+ "RequestUri": "/a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba/cloudservices?api-version=2015-02-10",
+ "EncodedRequestUri": "L2E1YWE1OTk3LTMzZTUtNDZjYy04YWI4LThiZDg5Yjc2YjdiYS9jbG91ZHNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMTUtMDItMTA=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -221,34 +221,34 @@
"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 \r\n",
+ "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 \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": [
- "1115"
+ "1868"
],
"Content-Type": [
"application/xml; charset=utf-8"
],
"x-ms-request-id": [
- "18c82a131d0b37cb80afc87af5e2e78d"
+ "6f5f4fa7fd6ec099a7addea9e910bd5f"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:41:37 GMT"
+ "Mon, 23 Feb 2015 15:02:13 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"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==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -256,7 +256,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "58f2a926-665c-4a06-ab3e-1a2d0329a121-2015-04-16 14:41:20Z-P"
+ "e5b91bdd-4125-40ca-b541-8c1a5a6c6cfd-2015-02-23 15:01:56Z-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 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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
"929"
@@ -283,20 +283,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "58f2a926-665c-4a06-ab3e-1a2d0329a121-2015-04-16 14:41:20Z-P"
+ "e5b91bdd-4125-40ca-b541-8c1a5a6c6cfd-2015-02-23 15:01:56Z-P"
],
"x-ms-request-id": [
- "addc81afc12833fdbba517b63ec208bd"
+ "5c9028081490c164b548d0715fb07d8c"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:41:23 GMT"
+ "Mon, 23 Feb 2015 15:01:58 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -309,8 +309,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -318,7 +318,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "b59cf483-6724-43b5-925c-80bb90c96a53-2015-04-16 14:41:24Z-P"
+ "9cbe32c9-5b14-44a5-bc54-ac26f61114c9-2015-02-23 15:02:00Z-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 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",
+ "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"
@@ -345,20 +345,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "b59cf483-6724-43b5-925c-80bb90c96a53-2015-04-16 14:41:24Z-P"
+ "9cbe32c9-5b14-44a5-bc54-ac26f61114c9-2015-02-23 15:02:00Z-P"
],
"x-ms-request-id": [
- "3e6f62698b5d323fa352e075a08445c9"
+ "972f709d1d1ac022b7399eccde151a57"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:41:25 GMT"
+ "Mon, 23 Feb 2015 15:02:01 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -371,8 +371,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -380,7 +380,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "e47b0ace-bf32-4cca-a0cf-08d285d7f22b-2015-04-16 14:41:37Z-P"
+ "e5cc6e4a-85bd-4fbe-865b-e442c17c6520-2015-02-23 15:02:14Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -407,20 +407,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "e47b0ace-bf32-4cca-a0cf-08d285d7f22b-2015-04-16 14:41:37Z-P"
+ "e5cc6e4a-85bd-4fbe-865b-e442c17c6520-2015-02-23 15:02:14Z-P"
],
"x-ms-request-id": [
- "f8a7f3dab4f53d418aac1a6b6e594439"
+ "4cd59cd92e95cbe689c72c329461a3fc"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:41:38 GMT"
+ "Mon, 23 Feb 2015 15:02:15 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -433,10 +433,10 @@
"StatusCode": 200
},
{
- "RequestUri": "/63d3030d-0ad0-4c4f-8bce-c95a0a669524/cloudservices/RecoveryServices-KL3RZAJ53PF6LVMMAAQ3POPYBY6NXMNSYTW2VH7JISKRFRMEIKVQ-West-US/resources/WAHyperVRecoveryManager/~/HyperVRecoveryManagerVault/vault4RecordingTests/StorageMappings?api-version=2015-04-10",
- "EncodedRequestUri": "LzYzZDMwMzBkLTBhZDAtNGM0Zi04YmNlLWM5NWEwYTY2OTUyNC9jbG91ZHNlcnZpY2VzL1JlY292ZXJ5U2VydmljZXMtS0wzUlpBSjUzUEY2TFZNTUFBUTNQT1BZQlk2TlhNTlNZVFcyVkg3SklTS1JGUk1FSUtWUS1XZXN0LVVTL3Jlc291cmNlcy9XQUh5cGVyVlJlY292ZXJ5TWFuYWdlci9+L0h5cGVyVlJlY292ZXJ5TWFuYWdlclZhdWx0L3ZhdWx0NFJlY29yZGluZ1Rlc3RzL1N0b3JhZ2VNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE1LTA0LTEw",
+ "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": "DELETE",
- "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",
+ "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"
@@ -448,10 +448,10 @@
"application/xml"
],
"Agent-Authentication": [
- "{\"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\":{}}"
+ "{\"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\":{}}"
],
"x-ms-client-request-id": [
- "f2a5ea75-def2-432f-b1ee-111a7e8be3a8-2015-04-16 14:41:27Z-P"
+ "df4584fe-82b9-4b3f-82b1-7ea7e40217c2-2015-02-23 15:02:03Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -460,7 +460,7 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
"629"
@@ -478,20 +478,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "f2a5ea75-def2-432f-b1ee-111a7e8be3a8-2015-04-16 14:41:27Z-P"
+ "df4584fe-82b9-4b3f-82b1-7ea7e40217c2-2015-02-23 15:02:03Z-P"
],
"x-ms-request-id": [
- "24fc7fbbdc163288819b25eb6b33b34d"
+ "c845d706802bc79a9749136086349c70"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:41:28 GMT"
+ "Mon, 23 Feb 2015 15:02:04 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -504,8 +504,8 @@
"StatusCode": 200
},
{
- "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=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -513,7 +513,7 @@
"application/xml"
],
"x-ms-client-request-id": [
- "d6ca71c1-b76d-42f0-abff-7d93306a6eb2-2015-04-16 14:41:35Z-P"
+ "42764da0-e31f-4c26-af15-1985fc6ecc1a-2015-02-23 15:02:11Z-P"
],
"x-ms-version": [
"2013-03-01"
@@ -522,10 +522,10 @@
"Microsoft.WindowsAzure.Management.SiteRecovery.SiteRecoveryManagementClient/0.9.0.0"
]
},
- "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",
+ "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",
"ResponseHeaders": {
"Content-Length": [
- "2935"
+ "2927"
],
"Content-Type": [
"application/xml; charset=utf-8"
@@ -540,20 +540,20 @@
"max-age=15724800; includeSubDomains,max-age=15724800; includeSubDomains"
],
"x-ms-client-request-id": [
- "d6ca71c1-b76d-42f0-abff-7d93306a6eb2-2015-04-16 14:41:35Z-P"
+ "42764da0-e31f-4c26-af15-1985fc6ecc1a-2015-02-23 15:02:11Z-P"
],
"x-ms-request-id": [
- "eb2d135865cf3aa5be0d3d026850b954"
+ "f458ca104bf3ccb4b7aec3184554038a"
],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Thu, 16 Apr 2015 14:41:36 GMT"
+ "Mon, 23 Feb 2015 15:02:12 GMT"
],
"Server": [
- "1.0.6198.202",
- "(rd_rdfe_stable.150307-1902)",
+ "1.0.6196.1444",
+ "(rd_rdfe.150212-0800)",
"Microsoft-HTTPAPI/2.0"
],
"X-AspNet-Version": [
@@ -568,6 +568,6 @@
],
"Names": {},
"Variables": {
- "SubscriptionId": "63d3030d-0ad0-4c4f-8bce-c95a0a669524"
+ "SubscriptionId": "a5aa5997-33e5-46cc-8ab8-8bd89b76b7ba"
}
}
\ 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 51497f10b516..42803e8fbfae 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 fdb70a83f94e..891cf8f8d254 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.6.0-preview\lib\net40\Microsoft.WindowsAzure.Management.SiteRecovery.dll
+ ..\..\..\packages\Microsoft.Azure.Management.RecoveryServices.0.5.1-preview\lib\net40\Microsoft.WindowsAzure.Management.SiteRecovery.dll
..\..\..\packages\Microsoft.WindowsAzure.Management.Storage.5.1.1\lib\net40\Microsoft.WindowsAzure.Management.Storage.dll
@@ -149,7 +149,6 @@
-
@@ -164,15 +163,9 @@
-
-
-
-
-
-
@@ -232,9 +225,6 @@
-
- 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 964795ae9b6f..ccf0d7feb21f 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,73 +900,334 @@
+
+
+
+ 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-AzureSiteRecoveryJob
+ Get-AzureSiteRecoveryRecoveryPlan
- 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 information of the Recovery Plan for current Azure Site Recovery Vault
Get
- AzureSiteRecoveryJob
+ AzureSiteRecoveryRecoveryPlan
- Get the information of the operation for current Azure Site Recovery Vault.
+ 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-AzureSiteRecoveryJob
-
- Id
-
- Specifies the ID of a job to get.
-
- string
-
+ Get-AzureSiteRecoveryRecoveryPlan
- Get-AzureSiteRecoveryJob
-
- Job
+ Get-AzureSiteRecoveryRecoveryPlan
+
+ Name
- Specifies an Azure Site Recovery job object to get.
+ name of the recovery plan
- ASRJob
+ string
- 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
+ Get-AzureSiteRecoveryRecoveryPlan
+
+ Id
- ID of the object on which Job was targeted to.
+ Id of the recovery plan
string
@@ -974,62 +1235,10 @@
-
- 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
- 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.
+ Id of the recovery plan
string
@@ -1039,10 +1248,10 @@
-
- TargetObjectId
+
+ Name
- ID of the object on which Job was targeted to.
+ name of the recovery plan
string
@@ -1110,61 +1319,11 @@
C:\PS>
- Get-AzureSiteRecoveryJob -Id d0b56c01-1fd7-411a-94e9-be717ac6601e
-
- 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"
+ Get-AzureSiteRecoveryRecoveryPlan
- 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 : {}
+ ID Name ServerId TargetServerId
+ -- ---- -------- --------------
+ 71de8ebc-1e9a-4242-aec3-ee... ContosoPlan 4a94c4a9-c856-4577-afbd-36... 78facf56-b273-4941-82fd-cc...
Description
@@ -1191,46 +1350,298 @@
-
+
+
+
+
+
+ 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
+ -----------
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- Get-AzureSiteRecoveryRecoveryPlan
+ Import-AzureSiteRecoveryVaultSettingsFile
- Get information of the Recovery Plan for current Azure Site Recovery Vault
+ Imports a Azure site Recovery Vault Settings file to able to connect to Azure site Recovery Vault
- Get
- AzureSiteRecoveryRecoveryPlan
+ Import
+ AzureSiteRecoveryVaultSettingsFile
- 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
+ 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-AzureSiteRecoveryRecoveryPlan
-
-
- Get-AzureSiteRecoveryRecoveryPlan
-
- Name
-
- name of the recovery plan
-
- string
-
-
-
- Get-AzureSiteRecoveryRecoveryPlan
-
- Id
+ Import-AzureSiteRecoveryVaultSettingsFile
+
+ Path
- Id of the recovery plan
+ Path to the Azure site Recovery Vault Settings file. This file can be downloaded from Azure Site Recovery Vault portal and stored locally
string
@@ -1238,23 +1649,10 @@
-
- Id
-
- Id of the recovery plan
-
-
- string
-
- string
-
-
-
-
-
- Name
+
+ Path
- name of the recovery plan
+ Path to the Azure site Recovery Vault Settings file. This file can be downloaded from Azure Site Recovery Vault portal and stored locally
string
@@ -1322,11 +1720,13 @@
C:\PS>
- Get-AzureSiteRecoveryRecoveryPlan
+ Import-AzureSiteRecoveryVaultSettingsFile -Path "C:\Users\Contoso\Contosovault Monday, October 6, 2014.VaultCredentials"
- ID Name ServerId TargetServerId
- -- ---- -------- --------------
- 71de8ebc-1e9a-4242-aec3-ee... ContosoPlan 4a94c4a9-c856-4577-afbd-36... 78facf56-b273-4941-82fd-cc...
+ VERBOSE: Vault Settings File path: C:\Users\Contoso\Contosovault Monday, October 6, 2014.VaultCredentials
+
+ ResourceName CloudServiceName
+ ------------ ----------------
+ Contosovault RecoveryServices-6JP23WE3SKKOM5AFQG2YQAI22MNOWK52QDKWMUP...
Description
@@ -1353,135 +1753,50 @@
-
+
- Get-AzureSiteRecoveryProtectionEntity
+ New-AzureSiteRecoveryRecoveryPlan
- The Get-AzureSiteRecoveryProtectionEntity cmdlet gets protected objects in Microsoft Azure Site Recovery, such as virtual machines.
+ Adds a Recovery Plan in to a current Azure Site Recovery Vault
- Get
- AzureSiteRecoveryProtectionEntity
+ New
+ AzureSiteRecoveryRecoveryPlan
- Get the list of Protection Entities like "VMs" . A Protection Entity is an object which can be protected using Azure site Recovery
+ 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-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
-
+ New-AzureSiteRecoveryRecoveryPlan
- ProtectionContainerId
+ File
- Id of the Protection Container
+ Recovery Plan file
string
-
-
- Get-AzureSiteRecoveryProtectionEntity
-
- ProtectionContainer
+
+ WaitForCompletion
- Protection Container object
+ Waits till the operation completes
- 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
+ File
- Name of the Protection Entity
+ Recovery Plan file
string
@@ -1491,28 +1806,15 @@
-
- ProtectionContainer
-
- Protection Container object
-
-
- ASRProtectionContainer
-
- ASRProtectionContainer
-
-
-
-
-
- ProtectionContainerId
+
+ WaitForCompletion
- Id of the Protection Container
+ Waits till the operation completes
- string
+ SwitchParameter
- string
+ SwitchParameter
@@ -1575,23 +1877,18 @@
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
+ 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
@@ -1618,44 +1915,91 @@
-
+
- Import-AzureSiteRecoveryVaultSettingsFile
+ Remove-AzureSiteRecoveryRecoveryPlan
- Imports a Azure site Recovery Vault Settings file to able to connect to Azure site Recovery Vault
+ Remove a Recovery Plan from the current Azure Site Recovery Vault
- Import
- AzureSiteRecoveryVaultSettingsFile
+ Remove
+ 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
+ Remove a Recovery Plan from the current Azure Site Recovery Vault
- Import-AzureSiteRecoveryVaultSettingsFile
-
- Path
+ Remove-AzureSiteRecoveryRecoveryPlan
+
+ 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
+
+ Force
+
+ Bypasses confirmation on passing
+
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
+
+ Remove-AzureSiteRecoveryRecoveryPlan
+
+ RecoveryPlan
+
+ Recovery Plan object
+
+ ASRRecoveryPlan
+
+
+ Force
+
+ Bypasses confirmation on passing
+
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
-
- Path
+
+ Force
- Path to the Azure site Recovery Vault Settings file. This file can be downloaded from Azure Site Recovery Vault portal and stored locally
+ Bypasses confirmation on passing
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
+
+ Id
+
+ Id of the Recovery Plan
string
@@ -1665,6 +2009,32 @@
+
+ RecoveryPlan
+
+ Recovery Plan object
+
+
+ ASRRecoveryPlan
+
+ ASRRecoveryPlan
+
+
+
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+ SwitchParameter
+
+ SwitchParameter
+
+
+
+
@@ -1723,13 +2093,18 @@
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
+ $Rp = Get-AzureSiteRecoveryRecoveryPlan; Remove-AzureSiteRecoveryRecoveryPlan -RecoveryPlan $Rp
- ResourceName CloudServiceName
- ------------ ----------------
- Contosovault RecoveryServices-6JP23WE3SKKOM5AFQG2YQAI22MNOWK52QDKWMUP...
+ 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
@@ -1756,50 +2131,54 @@
-
+
- New-AzureSiteRecoveryRecoveryPlan
+ Restart-AzureSiteRecoveryJob
- Adds a Recovery Plan in to a current Azure Site Recovery Vault
+ Restarts the Operation in Azure Site Recovery
- New
- AzureSiteRecoveryRecoveryPlan
+ Restart
+ AzureSiteRecoveryJob
- 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.
+ 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
- New-AzureSiteRecoveryRecoveryPlan
-
- File
+ Restart-AzureSiteRecoveryJob
+
+ Id
- Recovery Plan file
+ Id of the Azure Site Recovery Job
string
-
- WaitForCompletion
+
+
+ Restart-AzureSiteRecoveryJob
+
+ Job
- Waits till the operation completes
+
+ ASRJob
-
- File
+
+ Id
- Recovery Plan file
+ Id of the Azure Site Recovery Job
string
@@ -1809,15 +2188,15 @@
-
- WaitForCompletion
+
+ Job
- Waits till the operation completes
+
- SwitchParameter
+ ASRJob
- SwitchParameter
+ ASRJob
@@ -1880,18 +2259,19 @@
C:\PS>
- New-AzureSiteRecoveryRecoveryPlan -File C:\Users\contoso\Desktop\RP.xml
+ Restart-AzureSiteRecoveryJob -Id bbf0b839-9aaa-49e1-8354-601c9145966d
- 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 : {}
+ 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
@@ -1918,83 +2298,73 @@
-
+
- Remove-AzureSiteRecoveryRecoveryPlan
+ Resume-AzureSiteRecoveryJob
- Remove a Recovery Plan from the current Azure Site Recovery Vault
+ Resumes a suspended job in Azure Site Recovery
- Remove
- AzureSiteRecoveryRecoveryPlan
+ Resume
+ AzureSiteRecoveryJob
- Remove a Recovery Plan from the current Azure Site Recovery Vault
+ 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
- Remove-AzureSiteRecoveryRecoveryPlan
+ Resume-AzureSiteRecoveryJob
Id
- Id of the Recovery Plan
+ ID of the Azure Site Recovery Job
string
- Force
-
- Bypasses confirmation on passing
-
-
-
- WaitForCompletion
+ Comments
- Waits till the operation completes
+ User comment can be specified while resuming the Job
+ string
- Remove-AzureSiteRecoveryRecoveryPlan
+ Resume-AzureSiteRecoveryJob
- RecoveryPlan
-
- Recovery Plan object
-
- ASRRecoveryPlan
-
-
- Force
+ Job
- Bypasses confirmation on passing
+ ASR Job object
+ ASRJob
- WaitForCompletion
+ Comments
- Waits till the operation completes
+ User comment can be specified while resuming the Job
+ string
- Force
+ Comments
- Bypasses confirmation on passing
+ User comment can be specified while resuming the Job
- SwitchParameter
+ string
- SwitchParameter
+ string
@@ -2002,7 +2372,7 @@
Id
- Id of the Recovery Plan
+ ID of the Azure Site Recovery Job
string
@@ -2013,27 +2383,14 @@
- RecoveryPlan
-
- Recovery Plan object
-
-
- ASRRecoveryPlan
-
- ASRRecoveryPlan
-
-
-
-
-
- WaitForCompletion
+ Job
- Waits till the operation completes
+ ASR Job object
- SwitchParameter
+ ASRJob
- SwitchParameter
+ ASRJob
@@ -2096,17 +2453,18 @@
C:\PS>
- $Rp = Get-AzureSiteRecoveryRecoveryPlan; Remove-AzureSiteRecoveryRecoveryPlan -RecoveryPlan $Rp
+ $jobs= Get-AzureSiteRecoveryJob; Resume-AzureSiteRecoveryJob -Job $jobs
- 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 : {}
+ 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 : {}
@@ -2134,430 +2492,532 @@
-
+
+
+
+
+
+ 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
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- Restart-AzureSiteRecoveryJob
+ Start-AzureSiteRecoveryTestFailoverJob
- Restarts the Operation in Azure Site Recovery
+ 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.
- Restart
- AzureSiteRecoveryJob
+ Start
+ AzureSiteRecoveryTestFailoverJob
- 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
+ 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
- Restart-AzureSiteRecoveryJob
-
- Id
+ Start-AzureSiteRecoveryTestFailoverJob
+
+ Direction
- Id of the Azure Site Recovery Job
+ 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
+
+
- Restart-AzureSiteRecoveryJob
-
- Job
+ 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
+
+
+ NetworkType
+
+ Specifies the network type to be used for test failover.
+
+ string
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
- 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
+ Start-AzureSiteRecoveryTestFailoverJob
- Id
+ Direction
- ID of the Azure Site Recovery Job
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
string
+
+ Network
+
+ Specifies the network object to be used for test failover.
+
+ ASRNetwork
+
- Comments
+ NetworkType
- User comment can be specified while resuming the Job
+ 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
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
- Resume-AzureSiteRecoveryJob
-
- Job
+ Start-AzureSiteRecoveryTestFailoverJob
+
+ Direction
- ASR Job object
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
- ASRJob
+ 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
- Comments
+ NetworkType
- User comment can be specified while resuming the Job
+ Specifies the network type to be used for test failover.
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
-
-
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
- Set-AzureSiteRecoveryProtectionEntity
+ Start-AzureSiteRecoveryTestFailoverJob
- Protection
+ Direction
- set 'Enable' to enable protection and 'Disable' to disable protection
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
string
@@ -2569,1419 +3029,21 @@
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
+ NetworkType
- 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
-
- 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
-
-
- 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
-
-
- 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
-
-
- 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
-
-
- 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
-
-
- 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
-
-
- 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
-
-
- 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
-
- Waits till the operation completes
-
-
-
-
- Start-AzureSiteRecoveryTestFailoverJob
-
- Direction
-
- Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
-
- 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
-
-
- 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
-
-
-
-
-
-
-
- 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
-
-
-
+ Specifies the network type to be used for test failover.
+
+ string
+
+
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
- Start-AzureSiteRecoveryUnplannedFailoverJob
+ Start-AzureSiteRecoveryTestFailoverJob
Direction
@@ -3990,39 +3052,63 @@
string
- ProtectionContainerId
+ LogicalNetworkId
- Id of the Protection Container
+ Specifies the ID of the logical network.
string
-
- ProtectionEntityId
+
+ ProtectionEntity
- Id of the Protection Entity
+ Protection Entity object
- string
+ ASRProtectionEntity
- EncryptionKeyFile
+ NetworkType
- 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.
+ Specifies the network type to be used for test failover.
string
- PerformSourceSideActions
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
+
+ Start-AzureSiteRecoveryTestFailoverJob
+
+ Direction
+
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
+
+ string
+
+
+ Network
- Its used for indicating whether can do source site operations.
+ Specifies the network object to be used for test failover.
+ ASRNetwork
- SecondaryEncryptionKeyFile
+ NetworkType
- 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.
+ Specifies the network type to be used for test failover.
string
+
+ ProtectionEntity
+
+ Protection Entity object
+
+ ASRProtectionEntity
+
WaitForCompletion
@@ -4031,7 +3117,7 @@
- Start-AzureSiteRecoveryUnplannedFailoverJob
+ Start-AzureSiteRecoveryTestFailoverJob
Direction
@@ -4039,30 +3125,225 @@
string
-
+
ProtectionEntity
Protection Entity object
ASRProtectionEntity
+
+ VmNetworkId
+
+ Specifies the ID of the virtual machine network.
+
+ 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
+
+
+ RpId
+
+ Specifies the ID of a recovery plan for which to start the job.
+
+ 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
+
+
+ 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
+
+ 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
+
+
+ RpId
+
+ Specifies the ID of a recovery plan for which to start the job.
+
+ 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
+
+
+ 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
+
+
+ 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
+
+ Specifies the network type to be used for test failover.
+
+ string
+
- EncryptionKeyFile
+ WaitForCompletion
+
+ Waits till the operation completes
+
+
+
+
+ Start-AzureSiteRecoveryTestFailoverJob
+
+ Direction
- 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.
+ Direction of the failover, either PrimaryToRecovery or RecoveryToPrimary
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
+
- PerformSourceSideActions
+ LogicalNetworkId
- Its used for indicating whether can do source site operations.
+ Specifies the ID of the logical network.
+ string
- SecondaryEncryptionKeyFile
+ NetworkType
- 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.
+ Specifies the network type to be used for test failover.
string
@@ -4074,7 +3355,7 @@
- Start-AzureSiteRecoveryUnplannedFailoverJob
+ Start-AzureSiteRecoveryTestFailoverJob
Direction
@@ -4083,31 +3364,25 @@
string
- RpId
+ Network
- Id of the Recovery Plan
+ Specifies the network object to be used for test failover.
- string
+ ASRNetwork
- EncryptionKeyFile
+ NetworkType
- 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.
+ Specifies the network type to be used for test failover.
string
- PerformSourceSideActions
-
- Its used for indicating whether can do source site operations.
-
-
-
- SecondaryEncryptionKeyFile
+ RecoveryPlan
- 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.
+ 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
WaitForCompletion
@@ -4117,7 +3392,7 @@
- Start-AzureSiteRecoveryUnplannedFailoverJob
+ Start-AzureSiteRecoveryTestFailoverJob
Direction
@@ -4128,27 +3403,14 @@
RecoveryPlan
- Recovery Plan object
+ 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
-
-
- PerformSourceSideActions
-
- Its used for indicating whether can do source site operations.
-
-
-
- SecondaryEncryptionKeyFile
+ NetworkType
- 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.
+ Specifies the network type to be used for test failover.
string
@@ -4176,9 +3438,9 @@
- EncryptionKeyFile
+ LogicalNetworkId
- 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.
+ Specifies the ID of the logical network.
string
@@ -4189,9 +3451,9 @@
- PerformSourceSideActions
+ WaitForCompletion
- Its used for indicating whether can do source site operations.
+ Waits till the operation completes
SwitchParameter
@@ -4201,10 +3463,23 @@
-
- ProtectionContainerId
+
+ RecoveryPlan
- Id of the Protection Container
+ 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
@@ -4228,9 +3503,9 @@
- ProtectionEntityId
+ ProtectionContainerId
- Id of the Protection Entity
+ 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
@@ -4240,23 +3515,23 @@
-
- RecoveryPlan
+
+ ProtectionEntityId
- Recovery Plan object
+ 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.
- ASRRecoveryPlan
+ string
- ASRRecoveryPlan
+ string
- RpId
+ VmNetworkId
- Id of the Recovery Plan
+ Specifies the ID of the virtual machine network.
string
@@ -4267,9 +3542,9 @@
- SecondaryEncryptionKeyFile
+ NetworkType
- 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.
+ Specifies the network type to be used for test failover.
string
@@ -4279,15 +3554,15 @@
-
- WaitForCompletion
+
+ Network
- Waits till the operation completes
+ Specifies the network object to be used for test failover.
- SwitchParameter
+ ASRNetwork
- SwitchParameter
+ ASRNetwork
@@ -4350,7 +3625,8 @@
C:\PS>
- $PC = Get-AzureSiteRecoveryProtectionContainer; $PE = Get-AzureSiteRecoveryProtectionEntity -ProtectionContainer $PC; Start-AzureSiteRecoveryUnplannedFailoverJob -ProtectionEntity $PE -Direction PrimaryToRecovery
+ $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
@@ -4378,6 +3654,47 @@
+
+
+
+ -------------------------- 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
+ -----------
+
+
+
+
+
+
+
+
+
+
+
+
@@ -4388,7 +3705,357 @@
+
+
+
+
+
+ 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
+ -----------
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -4418,13 +4085,6 @@
ASRRecoveryPlan
-
- Direction
-
- Direction of the commit, either PrimaryToRecovery or RecoveryToPrimary
-
- string
-
WaitForCompletion
@@ -4441,13 +4101,6 @@
string
-
- Direction
-
- Direction of the commit, either PrimaryToRecovery or RecoveryToPrimary
-
- string
-
WaitForCompletion
@@ -4464,13 +4117,6 @@
ASRProtectionEntity
-
- Direction
-
- Direction of the commit, either PrimaryToRecovery or RecoveryToPrimary
-
- string
-
WaitForCompletion
@@ -4494,13 +4140,6 @@
string
-
- Direction
-
- Direction of the commit, either PrimaryToRecovery or RecoveryToPrimary
-
- string
-
WaitForCompletion
@@ -4511,19 +4150,6 @@
-
- Direction
-
- Direction of the commit, either PrimaryToRecovery or RecoveryToPrimary
-
-
- string
-
- string
-
-
-
-
ProtectionContainerId
@@ -4550,15 +4176,15 @@
-
- ProtectionEntityId
+
+ WaitForCompletion
- Id of the Protection Entity
+ Waits for Completion
- string
+ SwitchParameter
- string
+ SwitchParameter
@@ -4589,15 +4215,15 @@
-
- WaitForCompletion
+
+ ProtectionEntityId
- Waits for Completion
+ Id of the Protection Entity
- SwitchParameter
+ string
- SwitchParameter
+ string
@@ -4700,6 +4326,7 @@
+
@@ -4736,13 +4363,6 @@
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
@@ -4756,13 +4376,6 @@
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
@@ -4786,13 +4399,6 @@
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
@@ -4806,13 +4412,6 @@
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
@@ -4836,13 +4435,6 @@
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
@@ -4856,13 +4448,6 @@
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
@@ -4893,13 +4478,6 @@
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
@@ -4913,13 +4491,6 @@
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
@@ -4943,19 +4514,6 @@
-
- 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
@@ -5040,19 +4598,6 @@
-
- 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
@@ -5318,6 +4863,7 @@
+
@@ -5469,6 +5015,7 @@
+
@@ -5779,6 +5326,7 @@
+
@@ -5943,497 +5491,490 @@
-
-
- New-AzureSiteRecoveryProtectionProfileObject
-
-
- Creates a Protection profile object . This is an in memory object to be further supplied for Protection Profile related operations.
-
-
-
-
- New
- AzureSiteRecoveryProtectionProfileObject
-
-
+
+
+ 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.
+ Creates a Protection profile object . This is an in memory 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
-
-
- 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
-
-
-
-
-
+
+
+
+ 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
+
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
-
-
-
-
- RecoveryPoints
+
+ ReplicationFrequencyInSeconds
- Number of hours to retain Recovery points.
-
+ Replication frequency interval in seconds.
+As of now, only three possible values supported.
+30 seconds, 300 seconds, 900 seconds.
- int
-
- int
-
-
-
+ string
- ReplicationFrequencyInSeconds
+ ReplicationProvider
-
- Replication frequency interval in seconds.
- As of now, only three possible values supported.
- 30 seconds, 300 seconds, 900 seconds.
-
-
+ Type of Replication Provider either HyperVReplica or HyperVReplicaAzure.
string
-
- string
-
-
-
- ReplicationMethod
+ ApplicationConsistentSnapshotFrequencyInHours
- Replication Method either Online - over the network or Offline.
-
+ Frequency of Application Consistent Snapshot in hours.
- string
-
- string
-
-
-
+ int
- ReplicationPort
+ Force
- Port on which the replication would take place.
-
+ Specify this to bypass the confirm action and take the default (Y).
- int
-
- int
-
-
-
-
- ReplicationProvider
+
+ Name
- Type of Replication Provider either HyperVReplica or HyperVReplicaAzure.
-
+ 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
ReplicationStartTime
Replication Start Time. It should be within the next 24 hours of the start of the job.
-
TimeSpan
-
- TimeSpan
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ASRProtectionProfile
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+ 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
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
-
-
-
-
-
-
-
-
-
-
- -------------------------- EXAMPLE 1 --------------------------
-
-
- C:\PS>
-
+
+
+
+
+
+
+ ASRProtectionProfile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -------------------------- 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
+ -----------
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -6988,6 +6529,7 @@
+
@@ -7189,6 +6731,7 @@
+
@@ -7337,6 +6880,7 @@
+
@@ -8857,6 +8401,7 @@
+
@@ -9236,50 +8781,51 @@
+
- New-AzureSiteRecoverySite
+ New-AzureSiteRecoveryVault
- Creates an Azure Site Recovery Site
+ Creates a new Azure Site Recovery Vault
New
- AzureSiteRecoverySite
+ AzureSiteRecoveryVault
- Creates Azure Site Recovery Site
+ Creates a new Azure Site Recovery Vault
- New-AzureSiteRecoverySite
+ New-AzureSiteRecoveryVault
- Name
+ Location
- Name of the site to be created
+ Geo Location Name
string
-
- Vault
+
+ Name
- Vault Object for which the site has to be created
+ Vault Name for which the cred file to be generated
- ASRVault
+ string
- Name
+ Location
- Name of the site to be created
+ Geo Location Name
string
@@ -9289,15 +8835,15 @@
-
- Vault
+
+ Name
- Vault Object for which the site has to be created
+ Vault Name for which the cred file to be generated
- ASRVault
+ string
- ASRVault
+ string
@@ -9360,22 +8906,11 @@
C:\PS>
- New-AzureSiteRecoverySite -Name testSite
+ New-AzureSiteRecoveryVault -Name testVault -Location "West US"
- 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
+ Response
+ --------
+ Vault has been created
Description
@@ -9403,6 +8938,7 @@
+
@@ -9539,6 +9075,7 @@
+
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
deleted file mode 100644
index 52c56b569b7f..000000000000
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Microsoft.Azure.Commands.RecoveryServices.format.ps1xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
- 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 a5f372868f32..cba792731dec 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.AddDays(7);
+ cikTokenDetails.NotAfterTimestamp = cikTokenDetails.NotBeforeTimestamp.AddHours(6);
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 34ea1f10b604..387007e0d1e3 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 or Replication group Id
+ /// Virtual Machine ID
/// Enable protection input.
/// Job response
public JobResponse EnableProtection(
string protectionContainerId,
- string protectionEntityId,
+ string virtualMachineId,
EnableProtectionInput input)
{
return this.GetSiteRecoveryClient().ProtectionEntity.EnableProtection(
protectionContainerId,
- protectionEntityId,
+ virtualMachineId,
input,
this.GetRequestHeaders());
}
@@ -78,18 +78,15 @@ public JobResponse EnableProtection(
/// Sets protection on Protection entity.
///
/// Protection Container ID
- /// Virtual Machine ID or Replication group Id
- /// Disable protection input.
+ /// Virtual Machine ID
/// Job response
- public JobResponse DisableProtection(
+ public JobResponse DisbleProtection(
string protectionContainerId,
- string protectionEntityId,
- DisableProtectionInput input)
+ string virtualMachineId)
{
return this.GetSiteRecoveryClient().ProtectionEntity.DisableProtection(
protectionContainerId,
- protectionEntityId,
- input,
+ virtualMachineId,
this.GetRequestHeaders());
}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesProtectionProfileClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesProtectionProfileClient.cs
index 9a3b52f39556..bbc4befa0a78 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,
- CreateAndAssociateProtectionProfileInput createAndAssociateProtectionProfileInput)
+ ProtectionProfileAssociationInput protectionProfileAssociationInput)
{
return this.GetSiteRecoveryClient().ProtectionProfile.DissociateAndDelete(
protectionProfileId,
- createAndAssociateProtectionProfileInput,
+ protectionProfileAssociationInput,
this.GetRequestHeaders());
}
}
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesServerClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesServerClient.cs
index 2b58d3010838..e18e94614222 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesServerClient.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesServerClient.cs
@@ -26,11 +26,10 @@ public partial class PSRecoveryServicesClient
///
/// Gets Azure Site Recovery Servers.
///
- /// Boolean indicating if the request should be signed ACIK
/// Server list response
- public ServerListResponse GetAzureSiteRecoveryServer(bool shouldSignRequest = true)
+ public ServerListResponse GetAzureSiteRecoveryServer()
{
- return this.GetSiteRecoveryClient().Servers.List(this.GetRequestHeaders(shouldSignRequest));
+ return this.GetSiteRecoveryClient().Servers.List(this.GetRequestHeaders());
}
///
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesSiteClient.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesSiteClient.cs
index d1fab161cba3..56fe947c8cba 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesSiteClient.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesSiteClient.cs
@@ -12,7 +12,6 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-using System;
using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery;
using Microsoft.Azure.Portal.RecoveryServices.Models.Common;
using Microsoft.WindowsAzure.Management.SiteRecovery;
@@ -75,45 +74,5 @@ 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
deleted file mode 100644
index c04ded887d20..000000000000
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesStoragePoolMappingClient.cs
+++ /dev/null
@@ -1,104 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// 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 683bd48efa28..08e4fed90959 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,
- VMProperties updateVmPropertiesInput)
+ UpdateVmPropertiesInput 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 c3105f4840f0..44c18450ac02 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVaultClient.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/PSRecoveryServicesClient/PSRecoveryServicesVaultClient.cs
@@ -33,16 +33,5 @@ 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 64e1ebf23e04..82e9046ea72d 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.Designer.cs
@@ -317,42 +317,6 @@ 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..
///
@@ -380,15 +344,6 @@ 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..
///
@@ -445,15 +400,6 @@ 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.
///
@@ -463,15 +409,6 @@ 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 ba9fb4723d6d..3d362f7f9f51 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Properties/Resources.resx
@@ -256,25 +256,4 @@ 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 7ea12e459864..f8e28474a5a9 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/CreateAzureSiteRecoveryProtectionProfileObject.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/CreateAzureSiteRecoveryProtectionProfileObject.cs
@@ -49,12 +49,10 @@ 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.San)]
+ Constants.HyperVReplicaAzure)]
public string ReplicationProvider { get; set; }
///
@@ -151,46 +149,12 @@ 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
///
@@ -208,9 +172,6 @@ public override void ExecuteCmdlet()
case ASRParameterSets.EnterpriseToAzure:
this.EnterpriseToAzureProtectionProfileObject();
break;
- case ASRParameterSets.EnterpriseToEnterpriseSan:
- this.EnterpriseToEnterpriseSanProtectionProfileObject();
- break;
}
}
catch (Exception exception)
@@ -219,6 +180,16 @@ 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
///
@@ -289,7 +260,8 @@ private void ProceedToCreateProtectionProfileObject()
{
RecoveryAzureSubscription = this.RecoveryAzureSubscription,
RecoveryAzureStorageAccountName = this.RecoveryAzureStorageAccount,
- EncryptStoredData = this.EncryptStoredData,
+ //// Currently Data Encryption is not supported.
+ EncryptStoredData = false,
ReplicationFrequencyInSeconds = replicationFrequencyInSeconds,
RecoveryPoints = this.RecoveryPoints,
ApplicationConsistentSnapshotFrequencyInHours = this.ApplicationConsistentSnapshotFrequencyInHours,
@@ -339,43 +311,5 @@ 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 571c5dfa0331..2e854cc91e8e 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryRecoveryPlanFile.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryRecoveryPlanFile.cs
@@ -14,7 +14,6 @@
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;
@@ -80,12 +79,7 @@ public override void ExecuteCmdlet()
///
private void GetRecoveryPlanFile()
{
- 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 =
+ 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
deleted file mode 100644
index 54cb565b1186..000000000000
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/GetAzureSiteRecoveryStoragePoolMapping.cs
+++ /dev/null
@@ -1,77 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// 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
deleted file mode 100644
index 8169aec23145..000000000000
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/NewAzureSiteRecoveryStoragePoolMapping.cs
+++ /dev/null
@@ -1,101 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// 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
deleted file mode 100644
index b36183995a4b..000000000000
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoverySite.cs
+++ /dev/null
@@ -1,85 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// 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
deleted file mode 100644
index b22152bb349e..000000000000
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoveryStoragePoolMapping.cs
+++ /dev/null
@@ -1,101 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// 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
deleted file mode 100644
index 9ab0a475c410..000000000000
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/RemoveAzureSiteRecoveryVault.cs
+++ /dev/null
@@ -1,104 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// 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 40a7429ae0b5..181e3b8ea9d0 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionEntity.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionEntity.cs
@@ -61,8 +61,6 @@ 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; }
@@ -111,44 +109,6 @@ 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
///
@@ -158,8 +118,6 @@ 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;
@@ -204,55 +162,23 @@ public override void ExecuteCmdlet()
{
try
{
- string profileId = string.Empty;
- string replicationProvider = null;
-
- if (this.ProtectionEntity == null)
+ if (this.Protection == Constants.EnableProtection)
{
- var pe = RecoveryServicesClient.GetAzureSiteRecoveryProtectionEntity(
- this.ProtectionContainerId,
- this.Id);
- this.ProtectionEntity = new ASRProtectionEntity(pe.ProtectionEntity);
- }
+ string profileId = string.Empty;
+ var input = new EnableProtectionInput();
- // 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)
+ if (this.ProtectionEntity == null)
{
- throw new Exception("Please provide the protection profile object. It can be chosen from available protection profiles of the protection container.");
+ var pe = RecoveryServicesClient.GetAzureSiteRecoveryProtectionEntity(
+ this.ProtectionContainerId,
+ this.Id);
+ this.ProtectionEntity = new ASRProtectionEntity(pe.ProtectionEntity);
}
- }
- if (this.ParameterSetName == ASRParameterSets.ByIDs)
- {
- this.ValidateUsageById(replicationProvider, "Id");
- }
+ // Get the replciation provider from profile object otherwise assume its E2E.
+ // Let the call go without profileId set.
+ string replicationProvider = null;
- if (this.Protection == Constants.EnableProtection)
- {
- var input = new EnableProtectionInput();
if (this.ProtectionProfile != null)
{
profileId = this.ProtectionProfile.ID;
@@ -270,27 +196,18 @@ public override void ExecuteCmdlet()
null :
pc.ProtectionContainer.AvailableProtectionProfiles[0].ReplicationProvider;
- if (replicationProvider != Constants.HyperVReplica &&
- replicationProvider != Constants.San)
+ if (replicationProvider != Constants.HyperVReplica)
{
throw new Exception("Please provide the protection profile object. It can be chosen from available protection profiles of the protection container.");
}
}
- if (replicationProvider == Constants.San)
+ if (this.ParameterSetName == ASRParameterSets.ByIDs)
{
- 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;
-
- input.ReplicationProviderInput = DataContractUtils.Serialize(sanInput);
+ this.ValidateUsageById(replicationProvider, "Id");
}
- else if (replicationProvider == Constants.HyperVReplicaAzure)
+
+ if (replicationProvider == Constants.HyperVReplicaAzure)
{
input.ProtectionProfileId = this.ProtectionProfile.ID;
AzureEnableProtectionInput azureInput = new AzureEnableProtectionInput();
@@ -339,25 +256,10 @@ 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.DisableProtection(
+ RecoveryServicesClient.DisbleProtection(
this.ProtectionContainerId,
- this.Id,
- input);
+ this.Id);
}
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
deleted file mode 100644
index 0afc2ace12c1..000000000000
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryProtectionProfile.cs
+++ /dev/null
@@ -1,332 +0,0 @@
-// ----------------------------------------------------------------------------------
-//
-// 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 b7af255ca78a..3da012586dc9 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryVM.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/SetAzureSiteRecoveryVM.cs
@@ -13,7 +13,6 @@
// ----------------------------------------------------------------------------------
using System;
-using System.Collections.Generic;
using System.Management.Automation;
using Microsoft.Azure.Commands.RecoveryServices.SiteRecovery;
using Microsoft.Azure.Portal.RecoveryServices.Models.Common;
@@ -46,43 +45,28 @@ public class SetAzureSiteRecoveryVirtualMachine : RecoveryServicesCmdletBase
///
[Parameter]
[ValidateNotNullOrEmpty]
- public string RecoveryAzureVMName { get; set; }
+ public string Name { get; set; }
///
/// Gets or sets Recovery Azure VM size
///
[Parameter]
[ValidateNotNullOrEmpty]
- public string RecoveryAzureVMSize { get; set; }
-
- ///
- /// Gets or sets Recovery Azure Network Id
- ///
- [Parameter]
- [ValidateNotNullOrEmpty]
- public string RecoveryAzureNetworkId { get; set; }
+ public string Size { get; set; }
///
/// Gets or sets Selected Primary Network interface card Id
///
[Parameter]
[ValidateNotNullOrEmpty]
- public string PrimaryNicId { get; set; }
-
- ///
- /// Gets or sets recovery VM subnet name
- ///
- [Parameter]
- [ValidateNotNullOrEmpty]
- public string RecoveryVMSubnetName { get; set; }
+ public string PrimaryNic { get; set; }
///
- /// Gets or sets recovery NIC static IP address
+ /// Gets or sets Recovery Azure Network Id
///
[Parameter]
[ValidateNotNullOrEmpty]
- public string RecoveryNicIPAddress { get; set; }
-
+ public string RecoveryNetworkId { get; set; }
#endregion Parameters
///
@@ -91,28 +75,28 @@ public class SetAzureSiteRecoveryVirtualMachine : RecoveryServicesCmdletBase
public override void ExecuteCmdlet()
{
// Check for at least one option
- 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)))
+ if (string.IsNullOrEmpty(this.Name) &&
+ string.IsNullOrEmpty(this.Size) &&
+ string.IsNullOrEmpty(this.PrimaryNic) &&
+ string.IsNullOrEmpty(this.RecoveryNetworkId))
{
this.WriteWarning(Properties.Resources.ArgumentsMissingForUpdateVmProperties.ToString());
return;
}
- VMProperties updateVmPropertiesInput = new VMProperties();
- updateVmPropertiesInput.RecoveryAzureVMName = this.RecoveryAzureVMName;
- updateVmPropertiesInput.RecoveryAzureVMSize = this.RecoveryAzureVMSize;
- updateVmPropertiesInput.SelectedRecoveryAzureNetworkId = this.RecoveryAzureNetworkId;
+ // Both primary & recovery inputs should be present
+ if (string.IsNullOrEmpty(this.PrimaryNic) ^
+ string.IsNullOrEmpty(this.RecoveryNetworkId))
+ {
+ this.WriteWarning(Properties.Resources.NetworkArgumentsMissingForUpdateVmProperties.ToString());
+ return;
+ }
- updateVmPropertiesInput.VMNics = new List();
- VMNicDetails vmnicDetails = new VMNicDetails();
- vmnicDetails.NicId = this.PrimaryNicId;
- vmnicDetails.RecoveryVMSubnetName = this.RecoveryVMSubnetName;
- vmnicDetails.ReplicaNicStaticIPAddress = this.RecoveryNicIPAddress;
- updateVmPropertiesInput.VMNics.Add(vmnicDetails);
+ UpdateVmPropertiesInput updateVmPropertiesInput = new UpdateVmPropertiesInput();
+ updateVmPropertiesInput.RecoveryAzureVmGivenName = this.Name;
+ updateVmPropertiesInput.RecoveryAzureVmSize = this.Size;
+ updateVmPropertiesInput.SelectedPrimaryNicId = this.PrimaryNic;
+ updateVmPropertiesInput.RecoveryAzureNetworkId = this.RecoveryNetworkId;
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 ee50b2900b24..0cd19fa9d1fc 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryPlannedFailoverJob.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryPlannedFailoverJob.cs
@@ -68,20 +68,6 @@ 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.
///
@@ -127,7 +113,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;
@@ -168,17 +154,6 @@ 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
@@ -234,17 +209,6 @@ 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
@@ -260,7 +224,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 696368e4a8cb..1b1f3f55ec49 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileAssociationJob.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileAssociationJob.cs
@@ -82,6 +82,16 @@ 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
///
@@ -145,10 +155,6 @@ 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(
@@ -157,55 +163,26 @@ private void EnterpriseToEnterpriseAssociation()
this.ProtectionProfile.ReplicationProvider));
}
- 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()
+ HyperVReplicaProtectionProfileInput hyperVReplicaProtectionProfileInput
+ = new HyperVReplicaProtectionProfileInput()
{
- CloudId = this.ProtectionProfile.SanProviderSettingsObject.CloudId,
- RemoteCloudId = this.ProtectionProfile.SanProviderSettingsObject.RemoteCloudId,
- ArrayUniqueId = this.ProtectionProfile.SanProviderSettingsObject.ArrayUniqueId,
- RemoteArrayUniqueId = this.ProtectionProfile.SanProviderSettingsObject.RemoteArrayUniqueId
+ 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(
+ 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(sanProtectionProfileInput));
- }
+ string.IsNullOrEmpty(this.ProtectionProfile.Name) ? this.PrimaryProtectionContainer.Name : this.ProtectionProfile.Name,
+ this.ProtectionProfile.ReplicationProvider,
+ DataContractUtils.Serialize(hyperVReplicaProtectionProfileInput));
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 936ebed133b7..e7ed747dae83 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileDissociationJob.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryProtectionProfileDissociationJob.cs
@@ -15,7 +15,6 @@
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
@@ -85,42 +84,14 @@ 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,
- createAndAssociateProtectionProfileInput);
+ protectionProfileAssociationInput);
this.WriteJob(this.jobResponse.Job);
}
@@ -130,6 +101,16 @@ SanProtectionProfileInput sanProtectionProfileInput
}
}
+ ///
+ /// 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 f4f81a1d930b..240e23931fff 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryTestFailoverJob.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryTestFailoverJob.cs
@@ -145,21 +145,6 @@ 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
///
@@ -303,17 +288,6 @@ 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);
}
}
@@ -363,17 +337,6 @@ 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 5f27aecd385b..e018357be807 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryUnPlannedFailoverJob.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/StartAzureSiteRecoveryUnPlannedFailoverJob.cs
@@ -133,20 +133,6 @@ 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.
///
@@ -233,17 +219,6 @@ 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);
}
}
@@ -291,17 +266,6 @@ 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 c56a9fe2a432..e04af1730f16 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/UpdateAzureSiteRecoveryProtectionEntity.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/Service/UpdateAzureSiteRecoveryProtectionEntity.cs
@@ -85,6 +85,16 @@ 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 eb1b9e2d38bb..a2ff37c8ba7e 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/CertUtils.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/CertUtils.cs
@@ -140,57 +140,6 @@ 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 044f4a44ffcd..e85deac21183 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSContracts.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSContracts.cs
@@ -733,37 +733,6 @@ 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.
///
@@ -892,57 +861,6 @@ 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.
///
@@ -1206,82 +1124,6 @@ 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.
///
@@ -1322,64 +1164,6 @@ 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 ab7f2f7d5c02..989e7863aa3e 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSObjects.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSObjects.cs
@@ -15,10 +15,7 @@
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;
@@ -155,11 +152,6 @@ public class Constants
///
public const string HyperVReplicaAzure = "HyperVReplicaAzure";
- ///
- /// Represents San string constant.
- ///
- public const string San = "San";
-
///
/// Represents HyperVReplica string constant.
///
@@ -249,16 +241,6 @@ 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";
}
///
@@ -543,11 +525,6 @@ 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)
{
@@ -566,10 +543,6 @@ 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)
@@ -592,7 +565,6 @@ public ASRProtectionProfile(ProtectionProfile profile)
= details.RecoveryPointHistoryDuration;
this.HyperVReplicaAzureProviderSettingsObject.CanDissociate = profile.CanDissociate;
- this.HyperVReplicaAzureProviderSettingsObject.EncryptStoredData = details.EncryptionEnabled;
}
else if (profile.ReplicationProvider == Constants.HyperVReplica)
{
@@ -617,26 +589,6 @@ 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;
@@ -655,7 +607,7 @@ public ASRProtectionProfile(ProtectionProfile profile)
public string ID { get; set; }
///
- /// Gets or sets Replication Type (HyperVReplica, HyperVReplicaAzure, San)
+ /// Gets or sets Replication Type (HyperVReplica, HyperVReplicaAzure)
///
public string ReplicationProvider { get; set; }
@@ -669,11 +621,6 @@ public ASRProtectionProfile(ProtectionProfile profile)
///
public HyperVReplicaAzureProviderSettings HyperVReplicaAzureProviderSettingsObject { get; set; }
- ///
- /// Gets or sets SanProviderSettings
- ///
- public SanProviderSettings SanProviderSettingsObject { get; set; }
-
#endregion Properties
}
@@ -914,69 +861,14 @@ public ASRProtectionEntity(ProtectionEntity pe)
if (!string.IsNullOrWhiteSpace(pe.ReplicationProviderSettings))
{
- 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;
- }
+ 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 &&
@@ -1141,26 +1033,6 @@ 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; }
}
///
@@ -1744,51 +1616,4 @@ 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 62b561ca7e20..a61b54f9c3f8 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSParameterSets.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSParameterSets.cs
@@ -178,20 +178,5 @@ 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 f3861ae0c57d..1501ef1b94ea 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSStorageObjects.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/PSStorageObjects.cs
@@ -13,7 +13,6 @@
// ----------------------------------------------------------------------------------
using System;
-using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.Serialization;
using Microsoft.WindowsAzure.Management.SiteRecovery.Models;
@@ -49,32 +48,6 @@ 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
@@ -108,11 +81,6 @@ public enum StorageType
///
public string FabricType { get; set; }
- ///
- /// Gets or sets storage pools for storage arrays.
- ///
- public IList StoragePools { get; set; }
-
#endregion
}
@@ -179,68 +147,4 @@ 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
new file mode 100644
index 000000000000..ba072364e140
Binary files /dev/null and b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/SiteRecovery.Tests.dll differ
diff --git a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/Utilities.cs b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/Utilities.cs
index 0c6a632555b9..023ffe5c21ff 100644
--- a/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/Utilities.cs
+++ b/src/ServiceManagement/RecoveryServices/Commands.RecoveryServices/lib/Utilities.cs
@@ -155,32 +155,5 @@ 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 86f595906893..f75cd40ba9aa 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 3f5993497097..e6411276d957 100644
--- a/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1
+++ b/src/ServiceManagement/Services/Commands.Utilities/Azure.psd1
@@ -73,8 +73,7 @@ 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',
- '.\RecoveryServices\Microsoft.Azure.Commands.RecoveryServices.format.ps1xml'
+ '.\StorSimple\Microsoft.WindowsAzure.Commands.StorSimple.format.ps1xml'
)
# Modules to import as nested modules of the module specified in ModuleToProcess