diff --git a/src/DataMigration/DataMigration.Test/DataMigration.Test.csproj b/src/DataMigration/DataMigration.Test/DataMigration.Test.csproj
index 9ca6d4982d2b..95d6e0ab46f7 100644
--- a/src/DataMigration/DataMigration.Test/DataMigration.Test.csproj
+++ b/src/DataMigration/DataMigration.Test/DataMigration.Test.csproj
@@ -11,7 +11,7 @@
-
+
diff --git a/src/DataMigration/DataMigration.Test/ScenarioTests/Common.ps1 b/src/DataMigration/DataMigration.Test/ScenarioTests/Common.ps1
index 3e6df8bb7c2d..41d9b92f1543 100644
--- a/src/DataMigration/DataMigration.Test/ScenarioTests/Common.ps1
+++ b/src/DataMigration/DataMigration.Test/ScenarioTests/Common.ps1
@@ -75,7 +75,7 @@ function Create-DataMigrationService($rg)
}else{
$serviceName = Get-ServiceName
$virtualSubNetId = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("VIRTUAL_SUBNET_ID")
- $sku = "BusinessCritical_4vCores"
+ $sku = "Premium_4vCores"
$service = New-AzDataMigrationService -ResourceGroupName $rg.ResourceGroupName -ServiceName $ServiceName -Location $rg.Location -Sku $sku -VirtualSubnetId $virtualSubNetId
}
@@ -188,4 +188,22 @@ function SleepTask($value){
}else{
Start-Sleep -s 0
}
+}
+
+function New-TargetSqlMiSyncConnectionInfo
+{
+ $miResourceId = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("MI_RESOURCE_ID")
+ $connectioninfo = New-AzDmsConnInfo -ServerType SQLMI -MiResourceId $miResourceId
+
+ return $connectioninfo
+}
+
+function New-AzureActiveDirectoryApp
+{
+ $pwd = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("AZURE_AAD_APP_KEY")
+ $appId = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("AZURE_AAD_APP_ID")
+
+ $secpasswd = ConvertTo-SecureString $pwd -AsPlainText -Force
+ $app = New-AzDmsAadApp -ApplicationId $appId -AppKey $secpasswd
+ return $app
}
\ No newline at end of file
diff --git a/src/DataMigration/DataMigration.Test/ScenarioTests/ServiceTests.cs b/src/DataMigration/DataMigration.Test/ScenarioTests/ServiceTests.cs
index 851de518ff97..a48f68c72489 100644
--- a/src/DataMigration/DataMigration.Test/ScenarioTests/ServiceTests.cs
+++ b/src/DataMigration/DataMigration.Test/ScenarioTests/ServiceTests.cs
@@ -169,5 +169,26 @@ public void TestMigrateMongoDb()
{
DataMigrationTestController.NewInstance.RunPsTest(_logger, "Test-MigrateMongoDb");
}
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestConnectToTargetSqlDbMiSync()
+ {
+ DataMigrationTestController.NewInstance.RunPsTest(_logger, "Test-ConnectToTargetSqlDbMiSync");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestValidateMigrationInputSqlSqlDbMiSync()
+ {
+ DataMigrationTestController.NewInstance.RunPsTest(_logger, "Test-ValidateMigrationInputSqlSqlDbMiSync");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestMigrateSqlSqlDbMiSync()
+ {
+ DataMigrationTestController.NewInstance.RunPsTest(_logger, "Test-MigrateSqlSqlDbMiSync");
+ }
}
}
\ No newline at end of file
diff --git a/src/DataMigration/DataMigration.Test/ScenarioTests/ServiceTests.ps1 b/src/DataMigration/DataMigration.Test/ScenarioTests/ServiceTests.ps1
index 76ff0685683b..f31c5c638781 100644
--- a/src/DataMigration/DataMigration.Test/ScenarioTests/ServiceTests.ps1
+++ b/src/DataMigration/DataMigration.Test/ScenarioTests/ServiceTests.ps1
@@ -386,10 +386,6 @@ function Test-MigrateSqlSqlDBMi
$fileShareCred = Get-Creds $fileShareUsername $fileSharePassword
$backupFileShare = New-AzDmsFileShare -Path $fileSharePath -Credential $fileShareCred
- Assert-AreEqual $fileSharePath $backupFileShare.Path
- Assert-AreEqual $fileShareUserName $backupFileShare.Username
- Assert-AreEqual $fileSharePassword $backupFileShare.Password
-
$sourceDbName = "TestMI"
$targetDbName = "TestMI6"
$backupMode = "CreateBackup"
@@ -398,7 +394,6 @@ function Test-MigrateSqlSqlDBMi
Assert-AreEqual $sourceDbName $selectedDbs[0].Name
Assert-AreEqual $targetDbName $selectedDbs[0].RestoreDatabaseName
- Assert-AreEqual $backupFileShare.Path $selectedDbs[0].BackupFileShare.Path
#Migrating Logins and AgentJobs
#$selectedLogins = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("MI_LOGINS")
@@ -424,7 +419,6 @@ function Test-MigrateSqlSqlDBMi
$task = Get-AzDataMigrationTask -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -Expand
Assert-AreEqual $taskName $task[0].Name
- Assert-AreEqual $backupFileShare.Path $task.ProjectTask.Properties.Input.BackupFileShare.Path
#Assert-AreEqual $selectedJobs[0] $task.ProjectTask.Properties.Input.SelectedAgentJobs[0]
#Assert-AreEqual $selectedLogins[0] $task.ProjectTask.Properties.Input.SelectedLogins[0]
Assert-AreEqual $sourceDbName $task.ProjectTask.Properties.Input.SelectedDatabases[0].Name
@@ -788,7 +782,7 @@ function Test-MigrateSqlSqlDBSync
if ($output.MigrationState -eq "READY_TO_COMPLETE")
{
- $command = Invoke-AzDmsCommand -CommandType Complete `
+ $command = Invoke-AzDmsCommand -CommandType CompleteSqlDBSync `
-ResourceGroupName $rg.ResourceGroupName `
-ServiceName $service.Name `
-ProjectName $project.Name `
@@ -903,7 +897,7 @@ function Test-MigrateMongoDb
$task = Get-AzDataMigrationTask -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -Expand
if($task.ProjectTask.Properties.State -eq "Running") {
- $res = Invoke-AzDataMigrationCommand -CommandType cancel -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -ObjectName "test.many"
+ $res = Invoke-AzDataMigrationCommand -CommandType CancelMongoDB -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -ObjectName "test.many"
Assert-AreEqual "Accepted" $res.State
}
}
@@ -915,3 +909,216 @@ function Test-MigrateMongoDb
Remove-ResourceGroupForTest $rg
}
}
+
+function Test-ConnectToTargetSqlDbMiSync
+{
+ $rg = Create-ResourceGroupForTest
+
+ try
+ {
+ $service = Create-DataMigrationService($rg)
+ $project = Create-ProjectSqlSqlDbMi $rg $service
+ $taskName = Get-TaskName
+ $connectionInfo = New-TargetSqlMiSyncConnectionInfo
+ $userName = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("SQLDBMI_USERNAME")
+ $password = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("SQLDBMI_PASSWORD")
+ $cred = Get-Creds $userName $password
+ $app = New-AzureActiveDirectoryApp
+
+ $task = New-AzDataMigrationTask -TaskType ConnectToTargetSqlDbMiSync -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -TargetConnection $connectioninfo -TargetCred $cred -AzureActiveDirectoryApp $app
+
+ $task = Get-AzDataMigrationTask -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -Expand
+
+ Assert-AreEqual $taskName $task[0].Name
+ Assert-AreEqual 1 $task.Count
+
+ while(($task.ProjectTask.Properties.State -eq "Running") -or ($task.ProjectTask.Properties.State -eq "Queued"))
+ {
+ SleepTask 15
+ $task = Get-AzDataMigrationTask -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -Expand
+ }
+
+ Assert-AreEqual "Succeeded" $task.ProjectTask.Properties.State
+
+ Remove-AzDataMigrationTask -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -Force
+
+ Assert-ThrowsContains { $all = Get-AzDmsTask -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -Expand ;} "NotFound"
+ }
+ finally
+ {
+ Remove-ResourceGroupForTest $rg
+ }
+}
+
+function Test-ValidateMigrationInputSqlSqlDbMiSync
+{
+ $rg = Create-ResourceGroupForTest
+
+ try
+ {
+ $service = Create-DataMigrationService($rg)
+ $project = Create-ProjectSqlSqlDbMi $rg $service
+ $taskName = Get-TaskName
+
+ #Source Connection Details
+ $sourceConnectionInfo = New-SourceSqlConnectionInfo
+ $sourceUserName = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("SQL_USERNAME")
+ $sourcePassword = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("SQL_PASSWORD")
+ $sourceCred = Get-Creds $sourceUserName $sourcePassword
+
+ #Target Connection Details
+ $targetConnectionInfo = New-TargetSqlMiSyncConnectionInfo
+ $targetUserName = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("SQLDBMI_USERNAME")
+ $targetPassword = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("SQLDBMI_PASSWORD")
+ $targetCred = Get-Creds $targetUserName $targetPassword
+
+ $app = New-AzureActiveDirectoryApp
+
+ $fileSharePath = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("FILESHARE_PATH")
+ $fileShareUsername = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("FILESHARE_USERNAME")
+ $fileSharePassword = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("FILESHARE_PASSWORD")
+ $fileShareCred = Get-Creds $fileShareUsername $fileSharePassword
+ $backupFileShare = New-AzDmsFileShare -Path $fileSharePath -Credential $fileShareCred
+
+ $storageResourceId = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("STORAGE_RESOURCE_ID")
+
+ $sourceDbName = "AdventureWorks"
+ $targetDbName = getDmsAssetName AdventureWorks
+
+ $selectedDbs = New-AzDataMigrationSelectedDB -MigrateSqlServerSqlDbMi -Name $sourceDbName -TargetDatabaseName $targetDbName -BackupFileShare $backupFileShare
+
+ $migTask = New-AzDataMigrationTask -TaskType ValidateSqlServerSqlDbMiSync `
+ -ResourceGroupName $rg.ResourceGroupName `
+ -ServiceName $service.Name `
+ -ProjectName $project.Name `
+ -TaskName $taskName `
+ -SourceConnection $sourceConnectionInfo `
+ -SourceCred $sourceCred `
+ -TargetConnection $targetConnectionInfo `
+ -TargetCred $targetCred `
+ -BackupFileShare $backupFileShare `
+ -SelectedDatabase $selectedDbs `
+ -AzureActiveDirectoryApp $app `
+ -StorageResourceId $storageResourceId
+
+
+ $task = Get-AzDataMigrationTask -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -Expand
+
+ Assert-AreEqual $taskName $task[0].Name
+ Assert-AreEqual 1 $task.Count
+
+ while(($task.ProjectTask.Properties.State -eq "Running") -or ($task.ProjectTask.Properties.State -eq "Queued"))
+ {
+ SleepTask 15
+ $task = Get-AzDataMigrationTask -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -Expand
+ }
+
+ Assert-AreEqual "Succeeded" $task.ProjectTask.Properties.State
+
+ Remove-AzDataMigrationTask -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -Force
+
+ Assert-ThrowsContains { $all = Get-AzDmsTask -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -Expand ;} "NotFound"
+ }
+ finally
+ {
+ Remove-ResourceGroupForTest $rg
+ }
+}
+
+function Test-MigrateSqlSqlDbMiSync
+{
+ $rg = Create-ResourceGroupForTest
+
+ try
+ {
+ $service = Create-DataMigrationService($rg)
+ $project = Create-ProjectSqlSqlDbMi $rg $service
+ $taskName = Get-TaskName
+
+ #Source Connection Details
+ $sourceConnectionInfo = New-SourceSqlConnectionInfo
+ $sourceUserName = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("SQL_USERNAME")
+ $sourcePassword = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("SQL_PASSWORD")
+ $sourceCred = Get-Creds $sourceUserName $sourcePassword
+
+ #Target Connection Details
+ $targetConnectionInfo = New-TargetSqlMiSyncConnectionInfo
+ $targetUserName = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("SQLDBMI_USERNAME")
+ $targetPassword = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("SQLDBMI_PASSWORD")
+ $targetCred = Get-Creds $targetUserName $targetPassword
+
+ $app = New-AzureActiveDirectoryApp
+
+ $fileSharePath = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("FILESHARE_PATH")
+ $fileShareUsername = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("FILESHARE_USERNAME")
+ $fileSharePassword = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("FILESHARE_PASSWORD")
+ $fileShareCred = Get-Creds $fileShareUsername $fileSharePassword
+ $backupFileShare = New-AzDmsFileShare -Path $fileSharePath -Credential $fileShareCred
+
+ $storageResourceId = [Microsoft.Azure.Commands.DataMigrationConfig]::GetConfigString("STORAGE_RESOURCE_ID")
+
+ $sourceDbName = "AdventureWorks"
+ $dbId = "db|"+$sourceDbName
+ $targetDbName = getDmsAssetName AdventureWorks
+
+ $selectedDbs = New-AzDataMigrationSelectedDB -MigrateSqlServerSqlDbMi -Name $sourceDbName -TargetDatabaseName $targetDbName -BackupFileShare $backupFileShare
+
+ $migTask = New-AzDataMigrationTask -TaskType MigrateSqlServerSqlDbMiSync `
+ -ResourceGroupName $rg.ResourceGroupName `
+ -ServiceName $service.Name `
+ -ProjectName $project.Name `
+ -TaskName $taskName `
+ -SourceConnection $sourceConnectionInfo `
+ -SourceCred $sourceCred `
+ -TargetConnection $targetConnectionInfo `
+ -TargetCred $targetCred `
+ -BackupFileShare $backupFileShare `
+ -SelectedDatabase $selectedDbs `
+ -AzureActiveDirectoryApp $app `
+ -StorageResourceId $storageResourceId
+
+
+ $task = Get-AzDataMigrationTask -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -Expand
+
+ Assert-AreEqual $taskName $task[0].Name
+ Assert-AreEqual 1 $task.Count
+
+ while(($task.ProjectTask.Properties.State -eq "Running") -or ($task.ProjectTask.Properties.State -eq "Queued"))
+ {
+ Foreach($output in $task.ProjectTask.Properties.Output)
+ {
+ if ($output.Id -eq $dbId)
+ {
+ if ($output.MigrationState -eq "LOG_FILES_UPLOADING")
+ {
+ if ($output.FullBackupSetInfo.BackupType -eq "Database")
+ {
+ if($output.FullBackupSetInfo.IsBackupRestored)
+ {
+ $command = Invoke-AzDmsCommand -CommandType CompleteSqlMiSync `
+ -ResourceGroupName $rg.ResourceGroupName `
+ -ServiceName $service.Name `
+ -ProjectName $project.Name `
+ -TaskName $taskName `
+ -DatabaseName $output.SourceDatabaseName
+ }
+ }
+ }
+ }
+ }
+
+ SleepTask 15
+ $task = Get-AzDataMigrationTask -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -Expand
+ }
+
+ Assert-AreEqual "Succeeded" $task.ProjectTask.Properties.State
+
+ Remove-AzDataMigrationTask -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -Force
+
+ Assert-ThrowsContains { $all = Get-AzDmsTask -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName $project.Name -TaskName $taskName -Expand ;} "NotFound"
+ }
+ finally
+ {
+ Remove-ResourceGroupForTest $rg
+ }
+}
\ No newline at end of file
diff --git a/src/DataMigration/DataMigration.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.DmsTest.ServiceTests/TestConnectToTargetSqlDbMiSync.json b/src/DataMigration/DataMigration.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.DmsTest.ServiceTests/TestConnectToTargetSqlDbMiSync.json
new file mode 100644
index 000000000000..53e1d77487d4
--- /dev/null
+++ b/src/DataMigration/DataMigration.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.DmsTest.ServiceTests/TestConnectToTargetSqlDbMiSync.json
@@ -0,0 +1,2942 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourcegroups/DmResource-PsTestRun4971?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlZ3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNDk3MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "37ec2a50-91d2-469c-be14-356c3e6a3c82"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "38"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "d7e3a57c-5e77-41a3-9558-db96477c971d"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7e3a57c-5e77-41a3-9558-db96477c971d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T200306Z:d7e3a57c-5e77-41a3-9558-db96477c971d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:03:05 GMT"
+ ],
+ "Content-Length": [
+ "209"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971\",\r\n \"name\": \"DmResource-PsTestRun4971\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971/providers/Microsoft.DataMigration/services/DmService-PsTestRun9301?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNDk3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjkzMDE/YXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualSubnetId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/ERNetwork/providers/Microsoft.Network/virtualNetworks/ERDMSINTDemo-CORP-SCUS-VNET-5080/subnets/Subnet-1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium_4vCores\"\r\n },\r\n \"location\": \"South Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ed547fcf-c97d-4f9c-b0ec-15e49f153ac8"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "309"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"7TqRb8e4H0zOStUFgIY1RHkc8l5W+Lm6uH9tKIVs4qE=\""
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview"
+ ],
+ "x-ms-request-id": [
+ "f6851001-cdf5-4912-9ae9-85b98e24e4ed"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4be4db8-ff70-4cdc-8ae5-2b37a5fecd61"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T200310Z:c4be4db8-ff70-4cdc-8ae5-2b37a5fecd61"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:03:09 GMT"
+ ],
+ "Content-Length": [
+ "631"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"virtualSubnetId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/ERNetwork/providers/Microsoft.Network/virtualNetworks/ERDMSINTDemo-CORP-SCUS-VNET-5080/subnets/Subnet-1\"\r\n },\r\n \"etag\": \"7TqRb8e4H0zOStUFgIY1RHkc8l5W+Lm6uH9tKIVs4qE=\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971/providers/Microsoft.DataMigration/services/DmService-PsTestRun9301\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"DmService-PsTestRun9301\",\r\n \"sku\": {\r\n \"name\": \"Premium_4vCores\",\r\n \"size\": \"4 vCores\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"type\": \"Microsoft.DataMigration/services\"\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "591ada54-2a2c-4697-94c7-2afe92843f00"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "4147b290-186d-4487-89dd-83207f057fcb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T200340Z:4147b290-186d-4487-89dd-83207f057fcb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:03:40 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "069f3b73-e943-40a7-b5da-ef607ae8ef50"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "b31e6ef6-f683-4a99-aaf8-32f6ba11965f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T200410Z:b31e6ef6-f683-4a99-aaf8-32f6ba11965f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:04:09 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f6136a7c-0c59-489d-ade2-86da10e6be79"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "10ff84e9-c4b5-4232-ad83-4544702d2100"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T200440Z:10ff84e9-c4b5-4232-ad83-4544702d2100"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:04:39 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "7e667d84-378d-4529-9af9-e659574a198a"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "63ea0c69-aa30-4fd7-9eea-68b454670cab"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T200510Z:63ea0c69-aa30-4fd7-9eea-68b454670cab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:05:10 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "046027e9-5234-41e9-af8e-8f5be9e48a0a"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "8531b72a-a089-4996-b414-dc58ee6a8e61"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T200540Z:8531b72a-a089-4996-b414-dc58ee6a8e61"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:05:40 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "410117e7-59f0-4d96-a4dd-67e05671a637"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "5302b390-9d9b-40fe-a092-9e4c29913b3d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T200611Z:5302b390-9d9b-40fe-a092-9e4c29913b3d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:06:11 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b59ed2de-3c37-4b1a-9600-ebd47a0c55cc"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "df881047-e977-4a3d-a48f-f32ffb354f6f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T200641Z:df881047-e977-4a3d-a48f-f32ffb354f6f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:06:40 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0354f6a1-477a-47da-bdec-fa18441d694e"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "17cb6be5-b253-4287-925a-f321bb2b9456"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T200711Z:17cb6be5-b253-4287-925a-f321bb2b9456"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:07:11 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "05833205-4c52-47c6-94cf-9de845a16ff1"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4e7571e-1d72-4623-857a-a8e8a7b0ac8a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T200741Z:c4e7571e-1d72-4623-857a-a8e8a7b0ac8a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:07:41 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "bc9a37a1-98c5-4266-a380-848e4f6eb74c"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "96b784a5-3a3a-41d3-b756-8156aa81b83f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T200811Z:96b784a5-3a3a-41d3-b756-8156aa81b83f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:08:11 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "16dd2ecc-8583-4f30-80b5-00218ec273e0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "913a3ced-3cc3-4079-9451-62a82aaae2e4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T200841Z:913a3ced-3cc3-4079-9451-62a82aaae2e4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:08:41 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "bf003110-e44f-446b-951c-c427f9e0af09"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "6fe3f606-d766-4c28-ac2e-1fd49f49d780"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T200912Z:6fe3f606-d766-4c28-ac2e-1fd49f49d780"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:09:12 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "fadd7433-3411-4a78-a477-6218b410e657"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "e52b1a4f-202b-442f-a261-5c34bf74d3bb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T200942Z:e52b1a4f-202b-442f-a261-5c34bf74d3bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:09:41 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "34de3303-abb9-4eb6-b9f4-0e880cbd54a8"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "edbb6af2-ff20-4ae1-acda-d6767a4e2b9f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201012Z:edbb6af2-ff20-4ae1-acda-d6767a4e2b9f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:10:12 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0b7a39c1-1c0a-4b58-99df-0bd390f1d634"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a1e8a38-d52a-44ea-a182-461cb5ddcda1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201042Z:9a1e8a38-d52a-44ea-a182-461cb5ddcda1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:10:42 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "2aecb5b4-5e6f-4b09-a04e-d330ba124e09"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-correlation-request-id": [
+ "76db5bcd-6e79-435e-abfc-ade30cf8d5ad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201112Z:76db5bcd-6e79-435e-abfc-ade30cf8d5ad"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:11:12 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b2c99414-2c5e-42ac-ac5c-1621dd6620a6"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "c46472ac-8e54-482c-82fe-d1306f9594ca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201143Z:c46472ac-8e54-482c-82fe-d1306f9594ca"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:11:42 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "30d1598d-bd3e-4e50-80d1-ffd8520287f5"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-correlation-request-id": [
+ "3fba949d-85e6-4d17-97e7-f4c62ed116f5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201213Z:3fba949d-85e6-4d17-97e7-f4c62ed116f5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:12:13 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e7596eb1-e66e-456a-a99b-6b95aa1a1cae"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-correlation-request-id": [
+ "03ca0cb3-42b9-4ec3-8964-5bcb8bf85b54"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201243Z:03ca0cb3-42b9-4ec3-8964-5bcb8bf85b54"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:12:43 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvOWVmYTU4YzQtMDQzMS00NTExLWI5N2YtNzE4ZGQ4YTc4NGM5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "50e35abb-21c6-416c-a16d-5c7589f41e33"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "3befa4f8-edb0-46ce-873d-1115494fd396"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201313Z:3befa4f8-edb0-46ce-873d-1115494fd396"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:13:12 GMT"
+ ],
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/9efa58c4-0431-4511-b97f-718dd8a784c9\",\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971/providers/Microsoft.DataMigration/services/DmService-PsTestRun9301?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNDk3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjkzMDE/YXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"I3mjOuEmqbqTsnFdfY/wWbIqA4OAYK3qmhHFPifLtkI=\""
+ ],
+ "x-ms-request-id": [
+ "9fc22852-b83f-4603-97dc-52b91ca7d3c6"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-correlation-request-id": [
+ "138f3f61-084b-4bc9-bb5f-6fd84d775ee3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201313Z:138f3f61-084b-4bc9-bb5f-6fd84d775ee3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:13:13 GMT"
+ ],
+ "Content-Length": [
+ "816"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualNicId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971/providers/Microsoft.Network/networkInterfaces/NIC-hkqk5sb33kcp6hitc8scckn4\",\r\n \"virtualSubnetId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/ERNetwork/providers/Microsoft.Network/virtualNetworks/ERDMSINTDemo-CORP-SCUS-VNET-5080/subnets/Subnet-1\"\r\n },\r\n \"etag\": \"I3mjOuEmqbqTsnFdfY/wWbIqA4OAYK3qmhHFPifLtkI=\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971/providers/Microsoft.DataMigration/services/DmService-PsTestRun9301\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"DmService-PsTestRun9301\",\r\n \"sku\": {\r\n \"name\": \"Premium_4vCores\",\r\n \"size\": \"4 vCores\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"type\": \"Microsoft.DataMigration/services\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971/providers/Microsoft.DataMigration/services/DmService-PsTestRun9301/projects/DmProject-PsTestRun734?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNDk3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjkzMDEvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjczND9hcGktdmVyc2lvbj0yMDE4LTA3LTE1LXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sourcePlatform\": \"SQL\",\r\n \"targetPlatform\": \"SQLMI\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"Add-target-Here\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true\r\n },\r\n \"databasesInfo\": [\r\n {\r\n \"sourceDatabaseName\": \"DmDbName-PsTestRun406\"\r\n },\r\n {\r\n \"sourceDatabaseName\": \"DmDbName-PsTestRun6460\"\r\n }\r\n ]\r\n },\r\n \"location\": \"South Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2280c170-da30-4978-a12e-7267c68bc618"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "793"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"Mzyv9a6QCtzbtzjZK6cdgcaHm/ajNwokv7y2iX/IMq0=\""
+ ],
+ "x-ms-request-id": [
+ "2de80282-2941-44e8-b21d-ebddd8a02e1b"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "b814654c-e91f-4c1b-a367-ae35465f3568"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201315Z:b814654c-e91f-4c1b-a367-ae35465f3568"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:13:14 GMT"
+ ],
+ "Content-Length": [
+ "998"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"sourcePlatform\": \"SQL\",\r\n \"targetPlatform\": \"SQLMI\",\r\n \"creationTime\": \"2019-02-11T12:13:15.1038737-08:00\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"Add-target-Here\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true\r\n },\r\n \"databasesInfo\": [\r\n {\r\n \"sourceDatabaseName\": \"DmDbName-PsTestRun406\"\r\n },\r\n {\r\n \"sourceDatabaseName\": \"DmDbName-PsTestRun6460\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"Mzyv9a6QCtzbtzjZK6cdgcaHm/ajNwokv7y2iX/IMq0=\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971/providers/Microsoft.DataMigration/services/DmService-PsTestRun9301/projects/DmProject-PsTestRun734\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"DmProject-PsTestRun734\",\r\n \"type\": \"Microsoft.DataMigration/services/projects\"\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971/providers/Microsoft.DataMigration/services/DmService-PsTestRun9301/projects/DmProject-PsTestRun734/tasks/DmTask-PsTestRun572?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNDk3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjkzMDEvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjczNC90YXNrcy9EbVRhc2stUHNUZXN0UnVuNTcyP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"taskType\": \"ConnectToTarget.AzureSqlDbMI.Sync.LRS\",\r\n \"input\": {\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\",\r\n \"password\": \"Test123Test123Test123\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"appKey\": \"kv8fDwICsnTJcvsTM8fp2WMSDh6yeSaDalHfbiffBP4=\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "475183cb-cf21-45a9-b5a6-c8fa24f29abc"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "658"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"UVVJM/jaP8mgE8BisEgauJwskKXx5E2JCbIT6L8CdxE=\""
+ ],
+ "x-ms-request-id": [
+ "3801be52-71af-4957-aaa0-3549d964b98d"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "5028f3e6-6915-458b-a784-f3cf46f1e604"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201320Z:5028f3e6-6915-458b-a784-f3cf46f1e604"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:13:19 GMT"
+ ],
+ "Content-Length": [
+ "854"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"taskId\": \"d7b486c0-4ea0-43d7-95a6-16674d3dc109\",\r\n \"taskType\": \"ConnectToTarget.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Queued\"\r\n },\r\n \"etag\": \"UVVJM/jaP8mgE8BisEgauJwskKXx5E2JCbIT6L8CdxE=\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971/providers/Microsoft.DataMigration/services/DmService-PsTestRun9301/projects/DmProject-PsTestRun734/tasks/DmTask-PsTestRun572\",\r\n \"name\": \"DmTask-PsTestRun572\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971/providers/Microsoft.DataMigration/services/DmService-PsTestRun9301/projects/DmProject-PsTestRun734/tasks/DmTask-PsTestRun572?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNDk3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjkzMDEvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjczNC90YXNrcy9EbVRhc2stUHNUZXN0UnVuNTcyPyRleHBhbmQ9b3V0cHV0JmFwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7c294f15-ab27-4450-b4fd-5f432c51c194"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e1cd85b4-4360-48c2-8b01-3bde376970e9"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-correlation-request-id": [
+ "dcb6af66-1e5c-4364-b2e0-6449881c875f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201320Z:dcb6af66-1e5c-4364-b2e0-6449881c875f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:13:19 GMT"
+ ],
+ "Content-Length": [
+ "812"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [],\r\n \"taskId\": \"d7b486c0-4ea0-43d7-95a6-16674d3dc109\",\r\n \"taskType\": \"ConnectToTarget.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Queued\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971/providers/Microsoft.DataMigration/services/DmService-PsTestRun9301/projects/DmProject-PsTestRun734/tasks/DmTask-PsTestRun572\",\r\n \"name\": \"DmTask-PsTestRun572\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971/providers/Microsoft.DataMigration/services/DmService-PsTestRun9301/projects/DmProject-PsTestRun734/tasks/DmTask-PsTestRun572?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNDk3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjkzMDEvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjczNC90YXNrcy9EbVRhc2stUHNUZXN0UnVuNTcyPyRleHBhbmQ9b3V0cHV0JmFwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9b5a310f-dd6d-443b-bf9c-a4dc61cac396"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "47a95719-3a3a-4398-90c6-0795555ccf25"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e3bc835-7478-423b-ac25-122d179bb684"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201335Z:0e3bc835-7478-423b-ac25-122d179bb684"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:13:35 GMT"
+ ],
+ "Content-Length": [
+ "941"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"validationErrors\": null\r\n }\r\n ],\r\n \"taskId\": \"d7b486c0-4ea0-43d7-95a6-16674d3dc109\",\r\n \"taskType\": \"ConnectToTarget.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971/providers/Microsoft.DataMigration/services/DmService-PsTestRun9301/projects/DmProject-PsTestRun734/tasks/DmTask-PsTestRun572\",\r\n \"name\": \"DmTask-PsTestRun572\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971/providers/Microsoft.DataMigration/services/DmService-PsTestRun9301/projects/DmProject-PsTestRun734/tasks/DmTask-PsTestRun572?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNDk3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjkzMDEvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjczNC90YXNrcy9EbVRhc2stUHNUZXN0UnVuNTcyPyRleHBhbmQ9b3V0cHV0JmFwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "359b161c-ea1e-4688-b006-6babab42d03c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6fd52e05-97b1-4e3c-9147-b9e58438e8fa"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c9011f3-b72d-4423-b11f-1a5424b1a1d8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201336Z:7c9011f3-b72d-4423-b11f-1a5424b1a1d8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:13:35 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun4971/providers/Microsoft.DataMigration/services/DmService-PsTestRun9301/projects/DmProject-PsTestRun734/tasks/DmTask-PsTestRun572?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNDk3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjkzMDEvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjczNC90YXNrcy9EbVRhc2stUHNUZXN0UnVuNTcyP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0c4eef08-00c2-4aeb-a0ff-173fbbb0ed73"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3fecc1c7-92e5-43d5-9022-97f80d80c168"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "a700d12a-9c56-4be7-ae5b-7ef26b63a4c6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201336Z:a700d12a-9c56-4be7-ae5b-7ef26b63a4c6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:13:35 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourcegroups/DmResource-PsTestRun4971?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlZ3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNDk3MT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "586bc558-b670-49d7-8103-6930d1872425"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "1295e563-daa9-4bf3-ac97-401ce0e4a624"
+ ],
+ "x-ms-correlation-request-id": [
+ "1295e563-daa9-4bf3-ac97-401ce0e4a624"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201337Z:1295e563-daa9-4bf3-ac97-401ce0e4a624"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:13:37 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "6874dd81-4551-44e4-8077-34c6f403eacd"
+ ],
+ "x-ms-correlation-request-id": [
+ "6874dd81-4551-44e4-8077-34c6f403eacd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201353Z:6874dd81-4551-44e4-8077-34c6f403eacd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:13:52 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "46feb65b-11be-4e01-afc6-454d7ecc6f9c"
+ ],
+ "x-ms-correlation-request-id": [
+ "46feb65b-11be-4e01-afc6-454d7ecc6f9c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201408Z:46feb65b-11be-4e01-afc6-454d7ecc6f9c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:14:08 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "4dc1a61e-b975-4683-ae27-487a7872fb9a"
+ ],
+ "x-ms-correlation-request-id": [
+ "4dc1a61e-b975-4683-ae27-487a7872fb9a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201423Z:4dc1a61e-b975-4683-ae27-487a7872fb9a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:14:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "c1d392dc-df76-467c-b3b1-572ca959aa1f"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1d392dc-df76-467c-b3b1-572ca959aa1f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201438Z:c1d392dc-df76-467c-b3b1-572ca959aa1f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:14:38 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "cda1c207-91a8-473d-bde4-666d06c205b3"
+ ],
+ "x-ms-correlation-request-id": [
+ "cda1c207-91a8-473d-bde4-666d06c205b3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201454Z:cda1c207-91a8-473d-bde4-666d06c205b3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:14:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "f17a5bb6-4eb3-4d07-9a6e-69d2dec53493"
+ ],
+ "x-ms-correlation-request-id": [
+ "f17a5bb6-4eb3-4d07-9a6e-69d2dec53493"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201509Z:f17a5bb6-4eb3-4d07-9a6e-69d2dec53493"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:15:08 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "165661fc-91e3-47b7-ad3a-696915543733"
+ ],
+ "x-ms-correlation-request-id": [
+ "165661fc-91e3-47b7-ad3a-696915543733"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201524Z:165661fc-91e3-47b7-ad3a-696915543733"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:15:24 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "50f764b0-afa8-4497-bd74-3eea3036d498"
+ ],
+ "x-ms-correlation-request-id": [
+ "50f764b0-afa8-4497-bd74-3eea3036d498"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201539Z:50f764b0-afa8-4497-bd74-3eea3036d498"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:15:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "bdb098b7-4be2-4526-9168-612d37a6818f"
+ ],
+ "x-ms-correlation-request-id": [
+ "bdb098b7-4be2-4526-9168-612d37a6818f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201554Z:bdb098b7-4be2-4526-9168-612d37a6818f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:15:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "d79bb9da-371d-49e1-a7b1-49fc5c50bbb4"
+ ],
+ "x-ms-correlation-request-id": [
+ "d79bb9da-371d-49e1-a7b1-49fc5c50bbb4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201609Z:d79bb9da-371d-49e1-a7b1-49fc5c50bbb4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:16:09 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-request-id": [
+ "c71b508c-c08e-418e-8b46-1ece3fb06612"
+ ],
+ "x-ms-correlation-request-id": [
+ "c71b508c-c08e-418e-8b46-1ece3fb06612"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201624Z:c71b508c-c08e-418e-8b46-1ece3fb06612"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:16:24 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-request-id": [
+ "b75f5b9b-941d-4424-bfee-da58f58abd8b"
+ ],
+ "x-ms-correlation-request-id": [
+ "b75f5b9b-941d-4424-bfee-da58f58abd8b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201640Z:b75f5b9b-941d-4424-bfee-da58f58abd8b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:16:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-request-id": [
+ "c402b6a4-ee94-4006-bf55-ea294ea231b9"
+ ],
+ "x-ms-correlation-request-id": [
+ "c402b6a4-ee94-4006-bf55-ea294ea231b9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201655Z:c402b6a4-ee94-4006-bf55-ea294ea231b9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:16:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-request-id": [
+ "f15917e8-c09d-45ac-b38f-9e978624ce34"
+ ],
+ "x-ms-correlation-request-id": [
+ "f15917e8-c09d-45ac-b38f-9e978624ce34"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201710Z:f15917e8-c09d-45ac-b38f-9e978624ce34"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:17:10 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-request-id": [
+ "b6d58aab-4586-454f-9645-a5a1c264a22a"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6d58aab-4586-454f-9645-a5a1c264a22a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201725Z:b6d58aab-4586-454f-9645-a5a1c264a22a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:17:25 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-request-id": [
+ "f0b22f16-6720-46c4-a4a6-b5a4e1caafe0"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0b22f16-6720-46c4-a4a6-b5a4e1caafe0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201740Z:f0b22f16-6720-46c4-a4a6-b5a4e1caafe0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:17:40 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-request-id": [
+ "1f2f3031-04e7-4a7d-b0f6-cdf87d823de9"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f2f3031-04e7-4a7d-b0f6-cdf87d823de9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201755Z:1f2f3031-04e7-4a7d-b0f6-cdf87d823de9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:17:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-request-id": [
+ "979c8fe5-d658-4eeb-8552-d8c4e53df49c"
+ ],
+ "x-ms-correlation-request-id": [
+ "979c8fe5-d658-4eeb-8552-d8c4e53df49c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201811Z:979c8fe5-d658-4eeb-8552-d8c4e53df49c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:18:10 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-request-id": [
+ "9f08445d-cee5-4d8e-9ecc-0fa1ba2a264c"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f08445d-cee5-4d8e-9ecc-0fa1ba2a264c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201826Z:9f08445d-cee5-4d8e-9ecc-0fa1ba2a264c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:18:25 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONDk3MS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05EazNNUzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-request-id": [
+ "d0c178a2-f198-4c07-9eb8-2a7c6fd54421"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0c178a2-f198-4c07-9eb8-2a7c6fd54421"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201826Z:d0c178a2-f198-4c07-9eb8-2a7c6fd54421"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:18:26 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "testName": [
+ "DmResource-PsTestRun4971",
+ "DmService-PsTestRun9301",
+ "DmProject-PsTestRun734",
+ "DmDbName-PsTestRun406",
+ "DmDbName-PsTestRun6460",
+ "DmTask-PsTestRun572"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "9d32140c-78d4-49a9-a95f-65c77c16be83"
+ }
+}
\ No newline at end of file
diff --git a/src/DataMigration/DataMigration.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.DmsTest.ServiceTests/TestMigrateSqlSqlDbMiSync.json b/src/DataMigration/DataMigration.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.DmsTest.ServiceTests/TestMigrateSqlSqlDbMiSync.json
new file mode 100644
index 000000000000..9f5f7f052d9a
--- /dev/null
+++ b/src/DataMigration/DataMigration.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.DmsTest.ServiceTests/TestMigrateSqlSqlDbMiSync.json
@@ -0,0 +1,4026 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourcegroups/DmResource-PsTestRun5244?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlZ3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1371fe1e-8819-4f88-904f-ee32efdf3e15"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "38"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "14390de8-31cc-4912-b32e-1f313c455367"
+ ],
+ "x-ms-correlation-request-id": [
+ "14390de8-31cc-4912-b32e-1f313c455367"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203145Z:14390de8-31cc-4912-b32e-1f313c455367"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:31:45 GMT"
+ ],
+ "Content-Length": [
+ "209"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244\",\r\n \"name\": \"DmResource-PsTestRun5244\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzY/YXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualSubnetId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/ERNetwork/providers/Microsoft.Network/virtualNetworks/ERDMSINTDemo-CORP-SCUS-VNET-5080/subnets/Subnet-1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium_4vCores\"\r\n },\r\n \"location\": \"South Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0ece5c60-6a54-481e-a5c2-6d3c6179660c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "309"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"axg1PDgYi8X5oDJM/B6R+UFkycNWylmsc3pXv4mmMws=\""
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview"
+ ],
+ "x-ms-request-id": [
+ "9985f32d-4c04-49f2-9d03-ce680fe02969"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "e64c9906-4c13-4009-8a86-0db076c08a4a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203147Z:e64c9906-4c13-4009-8a86-0db076c08a4a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:31:47 GMT"
+ ],
+ "Content-Length": [
+ "631"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"virtualSubnetId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/ERNetwork/providers/Microsoft.Network/virtualNetworks/ERDMSINTDemo-CORP-SCUS-VNET-5080/subnets/Subnet-1\"\r\n },\r\n \"etag\": \"axg1PDgYi8X5oDJM/B6R+UFkycNWylmsc3pXv4mmMws=\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"DmService-PsTestRun7976\",\r\n \"sku\": {\r\n \"name\": \"Premium_4vCores\",\r\n \"size\": \"4 vCores\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"type\": \"Microsoft.DataMigration/services\"\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d7fd2fc8-debf-4143-8fcd-6175144a83c5"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "032c0de2-bdd2-41ea-9145-34a75b39df47"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203217Z:032c0de2-bdd2-41ea-9145-34a75b39df47"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:32:17 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ac5a4cf6-6dfd-4323-b61b-67ca8eb09c8e"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "cfbf7444-45d1-4ddb-9e76-5c817c508097"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203247Z:cfbf7444-45d1-4ddb-9e76-5c817c508097"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:32:46 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "42f02764-e29c-4700-a74d-73da924f1f45"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "a27be919-b2f4-4ec7-b546-eb5b3d0d3e41"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203317Z:a27be919-b2f4-4ec7-b546-eb5b3d0d3e41"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:33:17 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6444f3b6-1263-4665-a43e-7e7dc8025310"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb885a8f-321b-4c51-b85d-d2812f594c11"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203347Z:eb885a8f-321b-4c51-b85d-d2812f594c11"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:33:47 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "71ff1a0f-6a79-4c73-b4c6-7f617751cf09"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "d185d011-42c0-40e0-b58d-ffbfeca06e35"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203417Z:d185d011-42c0-40e0-b58d-ffbfeca06e35"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:34:17 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "7f3ccb69-8f3a-4c7d-92c4-f96e10331468"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "301a5444-d1bc-4133-8864-7cb4d1881bfa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203448Z:301a5444-d1bc-4133-8864-7cb4d1881bfa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:34:47 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "aaf3f593-5ab1-4f18-a4be-cba9b8ea0911"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "8b60c7b0-4673-4fe9-a465-8b81f65c4205"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203518Z:8b60c7b0-4673-4fe9-a465-8b81f65c4205"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:35:18 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "910a6476-2cc7-4a59-9919-f8abfb85a59e"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1ea075f-4508-4c54-be2a-88953bcc1a31"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203548Z:b1ea075f-4508-4c54-be2a-88953bcc1a31"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:35:47 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f87de739-0a7c-4281-8e26-6b19c89c7d1e"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "e2b57f31-53fc-475f-b65b-ae196ae6def9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203618Z:e2b57f31-53fc-475f-b65b-ae196ae6def9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:36:17 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3dc2fa69-8232-4ed7-a0fe-d038d8499d32"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "18499222-fd72-44f5-884e-9b0659c6f786"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203648Z:18499222-fd72-44f5-884e-9b0659c6f786"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:36:48 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "9c1332d1-f043-4a99-bb88-fbc65b1232b7"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc500dfb-3105-4d1f-b65c-411febe0b54a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203718Z:bc500dfb-3105-4d1f-b65c-411febe0b54a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:37:17 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8570a0c9-4340-442d-b205-28dd34737b50"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6cf9b5d-9caf-414d-9489-c6a8f1cafe49"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203749Z:d6cf9b5d-9caf-414d-9489-c6a8f1cafe49"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:37:48 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d8c7b97a-fd9a-4e8f-b4db-2b69a37f3e2e"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "c461822e-fb78-4892-a411-aee8bbbaf8ff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203819Z:c461822e-fb78-4892-a411-aee8bbbaf8ff"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:38:18 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "7321ec91-8be8-4d21-a203-ef647a5c4aca"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd68053e-a47f-41b0-9aeb-873285986def"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203849Z:dd68053e-a47f-41b0-9aeb-873285986def"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:38:49 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "70b352f2-f411-4c8f-85ee-806ab3c93995"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "4618e430-1b50-4d79-a3a5-b51773a55f8d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203919Z:4618e430-1b50-4d79-a3a5-b51773a55f8d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:39:18 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d6981f8f-96d5-4adc-ab7b-134c00402712"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-correlation-request-id": [
+ "97ec751c-94a6-4161-b19a-4370c3b40d94"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203949Z:97ec751c-94a6-4161-b19a-4370c3b40d94"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:39:49 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "29e3ed54-3ffa-4bb6-b074-6775ec3ad692"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-correlation-request-id": [
+ "5601e52e-a8df-442d-a36f-f2a2dd339c43"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204019Z:5601e52e-a8df-442d-a36f-f2a2dd339c43"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:40:19 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a1f6289a-1044-4bfb-8b80-58537041661c"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-correlation-request-id": [
+ "8545b0ab-e3a6-46f0-a364-2e15191b222f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204049Z:8545b0ab-e3a6-46f0-a364-2e15191b222f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:40:49 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e53fb3f4-b89c-4f8a-bca3-caae040c2c84"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "50815eb4-8d84-4457-a9c0-81181813e550"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204119Z:50815eb4-8d84-4457-a9c0-81181813e550"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:41:19 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvM2Q1ZTRjNmQtMDFhMS00YjM3LWEzMTAtYmY4Zjc5ODJkYmE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "c6e05b63-0fbf-49f8-9a6e-76fb41517c3f"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-correlation-request-id": [
+ "899400b0-95c5-4cf1-a6ad-e92277afaf3e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204150Z:899400b0-95c5-4cf1-a6ad-e92277afaf3e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:41:49 GMT"
+ ],
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/3d5e4c6d-01a1-4b37-a310-bf8f7982dba6\",\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzY/YXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"n4/Nn0HIRX/x0rekwvVRgpZi+DeyjiseLwiyS9c6Zd8=\""
+ ],
+ "x-ms-request-id": [
+ "b2d0baa0-f574-40d4-9273-abe615ed8099"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-correlation-request-id": [
+ "dbb7fe52-c1a0-426f-b883-8ae20b80cfb7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204150Z:dbb7fe52-c1a0-426f-b883-8ae20b80cfb7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:41:50 GMT"
+ ],
+ "Content-Length": [
+ "816"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualNicId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.Network/networkInterfaces/NIC-263g44h4fdtruny9ybpskwu3\",\r\n \"virtualSubnetId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/ERNetwork/providers/Microsoft.Network/virtualNetworks/ERDMSINTDemo-CORP-SCUS-VNET-5080/subnets/Subnet-1\"\r\n },\r\n \"etag\": \"n4/Nn0HIRX/x0rekwvVRgpZi+DeyjiseLwiyS9c6Zd8=\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"DmService-PsTestRun7976\",\r\n \"sku\": {\r\n \"name\": \"Premium_4vCores\",\r\n \"size\": \"4 vCores\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"type\": \"Microsoft.DataMigration/services\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDI/YXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sourcePlatform\": \"SQL\",\r\n \"targetPlatform\": \"SQLMI\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"Add-target-Here\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true\r\n },\r\n \"databasesInfo\": [\r\n {\r\n \"sourceDatabaseName\": \"DmDbName-PsTestRun9188\"\r\n },\r\n {\r\n \"sourceDatabaseName\": \"DmDbName-PsTestRun1005\"\r\n }\r\n ]\r\n },\r\n \"location\": \"South Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "563efe58-3cc3-442d-ab3d-085ba303de57"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "794"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"42T2kE98E4Hn22CX8w8h7hZ5EIT9oPTTdyPqVko4mow=\""
+ ],
+ "x-ms-request-id": [
+ "1def9e62-0e47-4d2a-a5cb-38b81d16abe0"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "8bcfc1cf-80a0-4f72-99b8-31ddcf4569db"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204151Z:8bcfc1cf-80a0-4f72-99b8-31ddcf4569db"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:41:51 GMT"
+ ],
+ "Content-Length": [
+ "1001"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"sourcePlatform\": \"SQL\",\r\n \"targetPlatform\": \"SQLMI\",\r\n \"creationTime\": \"2019-02-11T12:41:51.3427636-08:00\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"Add-target-Here\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true\r\n },\r\n \"databasesInfo\": [\r\n {\r\n \"sourceDatabaseName\": \"DmDbName-PsTestRun9188\"\r\n },\r\n {\r\n \"sourceDatabaseName\": \"DmDbName-PsTestRun1005\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"42T2kE98E4Hn22CX8w8h7hZ5EIT9oPTTdyPqVko4mow=\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"DmProject-PsTestRun1042\",\r\n \"type\": \"Microsoft.DataMigration/services/projects\"\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/YXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"password\": \"Jan@2019\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"password\": \"Jan@2019\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\",\r\n \"password\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\",\r\n \"password\": \"Test123Test123Test123\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"appKey\": \"kv8fDwICsnTJcvsTM8fp2WMSDh6yeSaDalHfbiffBP4=\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "82ce254d-51a6-4c73-811c-3fa9d1926052"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "1712"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"bciZU09+vvDiT7+Dh2AY+zjXKOfiRukWqYBphjSF3Nc=\""
+ ],
+ "x-ms-request-id": [
+ "37f255aa-457f-4637-85f6-517d43623639"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "57acd952-28ba-4431-b85c-daa9052e4653"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204155Z:57acd952-28ba-4431-b85c-daa9052e4653"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:41:55 GMT"
+ ],
+ "Content-Length": [
+ "1558"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Queued\"\r\n },\r\n \"etag\": \"bciZU09+vvDiT7+Dh2AY+zjXKOfiRukWqYBphjSF3Nc=\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2179cb47-0fbe-4b14-9d38-ea502b3013eb"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "db7f6524-d08d-49a7-b81a-237cef694b7c"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-correlation-request-id": [
+ "faa61bff-73a3-4346-94d6-972c91a589fb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204156Z:faa61bff-73a3-4346-94d6-972c91a589fb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:41:55 GMT"
+ ],
+ "Content-Length": [
+ "1516"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Queued\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8490b6bf-8adb-4496-9807-8bd1b9bbcde7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "1d124ed8-0f6d-427a-a5fb-b2b52d92d100"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
+ ],
+ "x-ms-correlation-request-id": [
+ "96dda460-c396-4eea-9028-6c1433f512cb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204211Z:96dda460-c396-4eea-9028-6c1433f512cb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:42:10 GMT"
+ ],
+ "Content-Length": [
+ "1517"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2d1359e3-b1b2-41ed-b6c1-1b7e12f6ce5b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ea1a632e-19f2-45cd-b38a-2bbda2664164"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-correlation-request-id": [
+ "91b16117-00c4-408d-aa29-4501cdca1c06"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204226Z:91b16117-00c4-408d-aa29-4501cdca1c06"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:42:26 GMT"
+ ],
+ "Content-Length": [
+ "3958"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"LOG_FILES_UPLOADING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Uploaded\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": false\r\n },\r\n \"lastRestoredBackupSetInfo\": null,\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Uploading\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": false\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Uploaded\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": false\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": false,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "01dbeed7-e219-47a2-aa4e-e94c8f7d19ec"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e52ead35-cbbc-4510-b457-3e756c566e8b"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
+ "x-ms-correlation-request-id": [
+ "f99e344b-edca-4207-bc9f-bd2c552b2764"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204241Z:f99e344b-edca-4207-bc9f-bd2c552b2764"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:42:41 GMT"
+ ],
+ "Content-Length": [
+ "4477"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"LOG_FILES_UPLOADING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restoring\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": false\r\n },\r\n \"lastRestoredBackupSetInfo\": null,\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Uploaded\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": false\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Uploaded\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": false\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restoring\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": false\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": false,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "41bddf54-2702-48b7-bd60-841a92593326"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b76032ec-2aca-4fb2-9473-90d6eecca79c"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-correlation-request-id": [
+ "d405d10e-6e7c-45b9-9de4-9065e673bde2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204256Z:d405d10e-6e7c-45b9-9de4-9065e673bde2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:42:56 GMT"
+ ],
+ "Content-Length": [
+ "4982"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"LOG_FILES_UPLOADING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n },\r\n \"lastRestoredBackupSetInfo\": {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": true,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e27a8adb-78b8-4ab4-839e-26a5fbd0d06b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "7877a97b-9bb1-4969-97ee-c28d0ff0e5bd"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11973"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "3dbe26e1-0b55-4102-a9b2-2215c431ae96"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204312Z:3dbe26e1-0b55-4102-a9b2-2215c431ae96"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:43:11 GMT"
+ ],
+ "Content-Length": [
+ "4982"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"CUTOVER_IN_PROGRESS\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n },\r\n \"lastRestoredBackupSetInfo\": {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": true,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8d7050d8-99fd-4e5f-9e67-c95accddb8de"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "2d53110d-b92d-4db4-abee-66d545b69e9e"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11972"
+ ],
+ "x-ms-correlation-request-id": [
+ "86943bd2-ae3b-4a2d-ba40-c41c7b624a3a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204327Z:86943bd2-ae3b-4a2d-ba40-c41c7b624a3a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:43:26 GMT"
+ ],
+ "Content-Length": [
+ "4982"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"CUTOVER_IN_PROGRESS\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n },\r\n \"lastRestoredBackupSetInfo\": {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": true,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d939dc85-dd61-427f-bb9f-7b1b9ea82849"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ab2994d1-c213-48df-a71d-04394bbeb7a8"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11971"
+ ],
+ "x-ms-correlation-request-id": [
+ "31ac1509-d722-4ccc-9a0e-9f30b70702a6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204342Z:31ac1509-d722-4ccc-9a0e-9f30b70702a6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:43:41 GMT"
+ ],
+ "Content-Length": [
+ "4982"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"CUTOVER_IN_PROGRESS\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n },\r\n \"lastRestoredBackupSetInfo\": {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": true,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e6c97157-f22d-4395-b7c5-f3cd759d8028"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "4b7b30de-4f14-484c-a7d7-03e46be5bf97"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11970"
+ ],
+ "x-ms-correlation-request-id": [
+ "df39cbe9-9cf2-4b1c-8b25-08124fc84b1c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204357Z:df39cbe9-9cf2-4b1c-8b25-08124fc84b1c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:43:57 GMT"
+ ],
+ "Content-Length": [
+ "4982"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"CUTOVER_IN_PROGRESS\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n },\r\n \"lastRestoredBackupSetInfo\": {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": true,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c0721401-4c24-48ad-8c7f-c6438a7ba9e2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "4f1c863b-acb1-48b4-ba3f-f5c735f45169"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11969"
+ ],
+ "x-ms-correlation-request-id": [
+ "8421b882-6aa0-4f26-8959-d4086ba74891"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204412Z:8421b882-6aa0-4f26-8959-d4086ba74891"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:44:12 GMT"
+ ],
+ "Content-Length": [
+ "4982"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"CUTOVER_IN_PROGRESS\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n },\r\n \"lastRestoredBackupSetInfo\": {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": true,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2b164bf7-0be7-425e-a14d-d740e9d172f5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f3f82c72-801c-4e55-99ff-3f5dacbb4012"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11968"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1405d43-9be2-4319-b1d6-35483c13ce2c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204427Z:b1405d43-9be2-4319-b1d6-35483c13ce2c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:44:27 GMT"
+ ],
+ "Content-Length": [
+ "4982"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"CUTOVER_IN_PROGRESS\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n },\r\n \"lastRestoredBackupSetInfo\": {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": true,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3ea76e34-b64d-4fb2-b516-7603d4da062f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "305349e3-7559-42a1-ae9d-8aef7467f369"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11967"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "edb21087-eb70-40d4-a4b6-f31cc98ed6a8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204443Z:edb21087-eb70-40d4-a4b6-f31cc98ed6a8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:44:42 GMT"
+ ],
+ "Content-Length": [
+ "4982"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"CUTOVER_IN_PROGRESS\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n },\r\n \"lastRestoredBackupSetInfo\": {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": true,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d4a84373-aaeb-40bc-a0fd-ae39c1820dc9"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "432bb5ed-dd24-4218-b8dc-f7054abd0567"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "x-ms-correlation-request-id": [
+ "22ad5fc3-9182-4aa8-8166-62f9be533a2f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204458Z:22ad5fc3-9182-4aa8-8166-62f9be533a2f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:44:57 GMT"
+ ],
+ "Content-Length": [
+ "4982"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"CUTOVER_IN_PROGRESS\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n },\r\n \"lastRestoredBackupSetInfo\": {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": true,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "de7fe3b9-074a-4b5e-97fa-58224cee397e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "21477585-ced7-45ed-af2d-8073e851e288"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11965"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b43fe8c-cade-490d-a714-7d79bb58d3a5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204513Z:3b43fe8c-cade-490d-a714-7d79bb58d3a5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:45:13 GMT"
+ ],
+ "Content-Length": [
+ "4982"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"CUTOVER_IN_PROGRESS\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n },\r\n \"lastRestoredBackupSetInfo\": {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": true,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "17778de2-db89-46cc-a4be-96aaa60e9e46"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "fddf84bd-309a-4187-9d7b-90fc947e11b1"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11964"
+ ],
+ "x-ms-correlation-request-id": [
+ "6efad98d-2322-44d3-804c-fe6db135d581"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204528Z:6efad98d-2322-44d3-804c-fe6db135d581"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:45:28 GMT"
+ ],
+ "Content-Length": [
+ "4982"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"CUTOVER_IN_PROGRESS\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n },\r\n \"lastRestoredBackupSetInfo\": {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": true,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "16c39680-5aec-43ad-947d-184ada49dbfe"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "10e1f7e2-8357-4cc1-b635-f90c2211ef69"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11963"
+ ],
+ "x-ms-correlation-request-id": [
+ "7882242a-e67d-4a17-84b3-6f01f61d7b3b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204543Z:7882242a-e67d-4a17-84b3-6f01f61d7b3b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:45:42 GMT"
+ ],
+ "Content-Length": [
+ "4982"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"CUTOVER_IN_PROGRESS\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n },\r\n \"lastRestoredBackupSetInfo\": {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": true,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "88839fb9-cc34-4ead-83bb-7c4a6029a21c"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b0f6ddf4-8fcd-404a-98a8-3b36b4a7bccb"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11962"
+ ],
+ "x-ms-correlation-request-id": [
+ "45f55aff-ab47-408f-855a-dc165dd0dfe0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204558Z:45f55aff-ab47-408f-855a-dc165dd0dfe0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:45:57 GMT"
+ ],
+ "Content-Length": [
+ "4982"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"CUTOVER_IN_PROGRESS\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n },\r\n \"lastRestoredBackupSetInfo\": {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": true,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a3952aa3-9fd4-47f9-9520-50d71194a4d0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6a493982-e0d8-4521-838b-2982c8f7e69b"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11961"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "d9dfa47e-90f4-4a00-8b60-028696bc32dd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204613Z:d9dfa47e-90f4-4a00-8b60-028696bc32dd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:46:13 GMT"
+ ],
+ "Content-Length": [
+ "4982"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"PENDING\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"CUTOVER_IN_PROGRESS\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": null,\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n },\r\n \"lastRestoredBackupSetInfo\": {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": true,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "6ca8992c-d42b-4f78-95e2-df057086aaa0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e9e310ec-b85b-407e-b3ab-02a087e7a4dc"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11960"
+ ],
+ "x-ms-correlation-request-id": [
+ "ad55d42b-2e40-4173-8d6e-5e7d0892579d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204629Z:ad55d42b-2e40-4173-8d6e-5e7d0892579d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:46:28 GMT"
+ ],
+ "Content-Length": [
+ "5379"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun3343\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [\r\n {\r\n \"id\": \"a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"databaseCount\": 1,\r\n \"state\": \"COMPLETE\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": \"2019-02-11T12:46:23.6118788-08:00\",\r\n \"sourceServerName\": \"AALAB03-2K8\",\r\n \"sourceServerVersion\": \"10.0.6241.0\",\r\n \"sourceServerBrandVersion\": \"SQL Server 2008\",\r\n \"targetServerName\": \"demomi.scus1b3fba4c2acae.database.windows.net\",\r\n \"targetServerVersion\": \"12.0.2000.8\",\r\n \"targetServerBrandVersion\": \"Azure SQL Database Managed Instance\",\r\n \"databaseErrorCount\": 0,\r\n \"resultType\": \"MigrationLevelOutput\"\r\n },\r\n {\r\n \"id\": \"db|AdventureWorks\",\r\n \"sourceDatabaseName\": \"AdventureWorks\",\r\n \"migrationState\": \"COMPLETED\",\r\n \"startedOn\": \"2019-02-11T12:42:15.9272287-08:00\",\r\n \"endedOn\": \"2019-02-11T12:46:23.6118788-08:00\",\r\n \"fullBackupSetInfo\": {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n },\r\n \"lastRestoredBackupSetInfo\": {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n \"activeBackupSets\": [\r\n {\r\n \"backupSetId\": \"e6b60e53-c7b5-48dd-8f07-95f0caa66de1\",\r\n \"firstLSN\": 486000000145100001,\r\n \"lastLSN\": 486000000145300001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog2.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:56:02\",\r\n \"backupFinishDate\": \"2019-01-11T13:56:02\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"7bdfc66c-14d5-4acc-91d3-d9568cabc0e0\",\r\n \"firstLSN\": 486000000126400001,\r\n \"lastLSN\": 486000000145100001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"TransactionLog\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksTransactionLog1.trn\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 1\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:55:21\",\r\n \"backupFinishDate\": \"2019-01-11T13:55:21\",\r\n \"isBackupRestored\": true\r\n },\r\n {\r\n \"backupSetId\": \"9fceb4b8-3864-45b6-bd35-998619297164\",\r\n \"firstLSN\": 486000000131000037,\r\n \"lastLSN\": 486000000132600001,\r\n \"lastModifiedTime\": \"0001-01-01T00:00:00\",\r\n \"backupType\": \"Database\",\r\n \"listOfBackupFiles\": [\r\n {\r\n \"fileLocation\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\\\\AdventureWorksFullBackup.bak\",\r\n \"familySequenceNumber\": 0,\r\n \"status\": \"Restored\",\r\n \"familyCount\": 0\r\n }\r\n ],\r\n \"databaseName\": \"AdventureWorks\",\r\n \"backupStartDate\": \"2019-01-11T13:53:40\",\r\n \"backupFinishDate\": \"2019-01-11T13:53:40\",\r\n \"isBackupRestored\": true\r\n }\r\n ],\r\n \"containerName\": \"b6468d15-a49e-45e3-96c3-5a596dcaa8b5\",\r\n \"errorPrefix\": \"der|AdventureWorks|\",\r\n \"isFullBackupRestored\": true,\r\n \"exceptionsAndWarnings\": [],\r\n \"resultType\": \"DatabaseLevelOutput\"\r\n },\r\n {\r\n \"id\": \"mr|a82f54c3-63cd-42ba-b910-b4a952b91f95\",\r\n \"reportUrl\": \"https://s00c4d1c2aa4aa5166c4e4bc.blob.core.windows.net/263g44h4fdtruny9ybpskwu3/a82f54c3-63cd-42ba-b910-b4a952b91f95-20190211204623111.pdf?sv=2016-05-31&sr=c&sig=5QhBgpiVwX771CPC22BJCuuu1E2dpepfZojNFphR2XM%3D&se=3019-02-09T15%3A04%3A18Z&sp=r\",\r\n \"resultType\": \"MigrationReportResult\"\r\n }\r\n ],\r\n \"taskId\": \"d424e9be-d898-4861-898d-94dee3888d17\",\r\n \"taskType\": \"Migrate.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169\",\r\n \"name\": \"DmTask-PsTestRun6169\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/JGV4cGFuZD1vdXRwdXQmYXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "788febd7-4121-47b1-b8a6-98fedb96e3ed"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ef52cb37-1870-48e6-9d97-7772a8a00c00"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11959"
+ ],
+ "x-ms-correlation-request-id": [
+ "0319d9ef-27e8-4d0e-86e1-ab27db73f872"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204629Z:0319d9ef-27e8-4d0e-86e1-ab27db73f872"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:46:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169/command?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjkvY29tbWFuZD9hcGktdmVyc2lvbj0yMDE4LTA3LTE1LXByZXZpZXc=",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"commandType\": \"Migrate.SqlServer.AzureDbSqlMi.Complete\",\r\n \"input\": {\r\n \"sourceDatabaseName\": \"AdventureWorks\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4e126933-d64b-47d9-a527-d9a153d5468e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "128"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ce116176-cd44-4b8f-9bf6-ebcf7a2dc585"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "901c749d-c726-482e-90bc-9ddbec826b0e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204256Z:901c749d-c726-482e-90bc-9ddbec826b0e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:42:56 GMT"
+ ],
+ "Content-Length": [
+ "175"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"commandId\": \"8d53d599-387e-4f03-9569-90c54d20dcea\",\r\n \"input\": {\r\n \"sourceDatabaseName\": \"AdventureWorks\"\r\n },\r\n \"commandType\": \"Migrate.SqlServer.AzureDbSqlMi.Complete\",\r\n \"state\": \"Accepted\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun5244/providers/Microsoft.DataMigration/services/DmService-PsTestRun7976/projects/DmProject-PsTestRun1042/tasks/DmTask-PsTestRun6169?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFNaWdyYXRpb24vc2VydmljZXMvRG1TZXJ2aWNlLVBzVGVzdFJ1bjc5NzYvcHJvamVjdHMvRG1Qcm9qZWN0LVBzVGVzdFJ1bjEwNDIvdGFza3MvRG1UYXNrLVBzVGVzdFJ1bjYxNjk/YXBpLXZlcnNpb249MjAxOC0wNy0xNS1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ae0c2268-b0d6-4cbc-968b-8f906427c959"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a342b48a-c0db-46e8-9a68-25227c4b59a5"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "62e6bb23-6137-4edf-abaa-97e796907ff0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204629Z:62e6bb23-6137-4edf-abaa-97e796907ff0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:46:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourcegroups/DmResource-PsTestRun5244?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlZ3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNTI0ND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a440cb9a-85c3-4023-9a0a-b21694bd2539"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "00cacadb-0fe8-45e9-829c-65458810e314"
+ ],
+ "x-ms-correlation-request-id": [
+ "00cacadb-0fe8-45e9-829c-65458810e314"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204630Z:00cacadb-0fe8-45e9-829c-65458810e314"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:46:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "0e0c5865-6907-4a6d-9aba-1c77158a7600"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e0c5865-6907-4a6d-9aba-1c77158a7600"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204646Z:0e0c5865-6907-4a6d-9aba-1c77158a7600"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:46:45 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "504d1ed7-c6c7-4f16-8d9d-d39511c3e5ed"
+ ],
+ "x-ms-correlation-request-id": [
+ "504d1ed7-c6c7-4f16-8d9d-d39511c3e5ed"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204701Z:504d1ed7-c6c7-4f16-8d9d-d39511c3e5ed"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:47:00 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "57c29391-d061-4dfa-b7c7-d4363c9acde7"
+ ],
+ "x-ms-correlation-request-id": [
+ "57c29391-d061-4dfa-b7c7-d4363c9acde7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204716Z:57c29391-d061-4dfa-b7c7-d4363c9acde7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:47:15 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "a040fa54-cf56-4f4a-80a6-c577652a7e2e"
+ ],
+ "x-ms-correlation-request-id": [
+ "a040fa54-cf56-4f4a-80a6-c577652a7e2e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204731Z:a040fa54-cf56-4f4a-80a6-c577652a7e2e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:47:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "46a3f073-aeb9-49e7-b45a-cd35c25491b5"
+ ],
+ "x-ms-correlation-request-id": [
+ "46a3f073-aeb9-49e7-b45a-cd35c25491b5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204746Z:46a3f073-aeb9-49e7-b45a-cd35c25491b5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:47:46 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "7ab9a418-5628-467d-898e-3b7dd24fb013"
+ ],
+ "x-ms-correlation-request-id": [
+ "7ab9a418-5628-467d-898e-3b7dd24fb013"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204801Z:7ab9a418-5628-467d-898e-3b7dd24fb013"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:48:01 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "f04207bf-373b-4a48-90d6-05d8e97bfbf9"
+ ],
+ "x-ms-correlation-request-id": [
+ "f04207bf-373b-4a48-90d6-05d8e97bfbf9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204817Z:f04207bf-373b-4a48-90d6-05d8e97bfbf9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:48:16 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "5bd0acbe-a861-44a1-a07c-de6db6d95b05"
+ ],
+ "x-ms-correlation-request-id": [
+ "5bd0acbe-a861-44a1-a07c-de6db6d95b05"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204832Z:5bd0acbe-a861-44a1-a07c-de6db6d95b05"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:48:32 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "aecedb23-90ca-4be3-8895-bdbdc4ed7b43"
+ ],
+ "x-ms-correlation-request-id": [
+ "aecedb23-90ca-4be3-8895-bdbdc4ed7b43"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204847Z:aecedb23-90ca-4be3-8895-bdbdc4ed7b43"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:48:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "a81cfa77-6431-48be-a4a5-d542dd0bd161"
+ ],
+ "x-ms-correlation-request-id": [
+ "a81cfa77-6431-48be-a4a5-d542dd0bd161"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204902Z:a81cfa77-6431-48be-a4a5-d542dd0bd161"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:49:02 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-request-id": [
+ "ab86cd23-a99e-47cc-b8e2-f4ef83b39cd4"
+ ],
+ "x-ms-correlation-request-id": [
+ "ab86cd23-a99e-47cc-b8e2-f4ef83b39cd4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204917Z:ab86cd23-a99e-47cc-b8e2-f4ef83b39cd4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:49:17 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-request-id": [
+ "252fa14a-6307-4956-bdbc-2b7a2ec34a45"
+ ],
+ "x-ms-correlation-request-id": [
+ "252fa14a-6307-4956-bdbc-2b7a2ec34a45"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204932Z:252fa14a-6307-4956-bdbc-2b7a2ec34a45"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:49:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-request-id": [
+ "01225320-511f-4a52-8cd4-13c2015ed730"
+ ],
+ "x-ms-correlation-request-id": [
+ "01225320-511f-4a52-8cd4-13c2015ed730"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T204948Z:01225320-511f-4a52-8cd4-13c2015ed730"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:49:47 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-request-id": [
+ "f6ab7d00-1b84-4d96-8ff8-409d3e5d2dab"
+ ],
+ "x-ms-correlation-request-id": [
+ "f6ab7d00-1b84-4d96-8ff8-409d3e5d2dab"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T205003Z:f6ab7d00-1b84-4d96-8ff8-409d3e5d2dab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:50:02 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-request-id": [
+ "2a01c412-a644-4bab-9c45-696328bd3864"
+ ],
+ "x-ms-correlation-request-id": [
+ "2a01c412-a644-4bab-9c45-696328bd3864"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T205018Z:2a01c412-a644-4bab-9c45-696328bd3864"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:50:18 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-request-id": [
+ "a9a8dc0a-bec7-4902-b88c-5a928a553ec6"
+ ],
+ "x-ms-correlation-request-id": [
+ "a9a8dc0a-bec7-4902-b88c-5a928a553ec6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T205033Z:a9a8dc0a-bec7-4902-b88c-5a928a553ec6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:50:33 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-request-id": [
+ "4e6eb9f4-7cdf-449b-8b2d-3e4a7fc5871d"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e6eb9f4-7cdf-449b-8b2d-3e4a7fc5871d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T205048Z:4e6eb9f4-7cdf-449b-8b2d-3e4a7fc5871d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:50:48 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-request-id": [
+ "5de65243-5728-4e59-b4c4-841e8e5d15e4"
+ ],
+ "x-ms-correlation-request-id": [
+ "5de65243-5728-4e59-b4c4-841e8e5d15e4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T205103Z:5de65243-5728-4e59-b4c4-841e8e5d15e4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:51:03 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONTI0NC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05USTBOQzFUVDFWVVNFTkZUbFJTUVV4VlV5SXNJbXB2WWt4dlkyRjBhVzl1SWpvaWMyOTFkR2hqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-request-id": [
+ "55d586ec-18ce-4e05-aed8-26d684517fe5"
+ ],
+ "x-ms-correlation-request-id": [
+ "55d586ec-18ce-4e05-aed8-26d684517fe5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T205104Z:55d586ec-18ce-4e05-aed8-26d684517fe5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:51:03 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "testName": [
+ "DmResource-PsTestRun5244",
+ "DmService-PsTestRun7976",
+ "DmProject-PsTestRun1042",
+ "DmDbName-PsTestRun9188",
+ "DmDbName-PsTestRun1005",
+ "DmTask-PsTestRun6169",
+ "AdventureWorks-PsTestRun3343"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "9d32140c-78d4-49a9-a95f-65c77c16be83"
+ }
+}
\ No newline at end of file
diff --git a/src/DataMigration/DataMigration.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.DmsTest.ServiceTests/TestValidateMigrationInputSqlSqlDbMiSync.json b/src/DataMigration/DataMigration.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.DmsTest.ServiceTests/TestValidateMigrationInputSqlSqlDbMiSync.json
new file mode 100644
index 000000000000..c5729988893a
--- /dev/null
+++ b/src/DataMigration/DataMigration.Test/SessionRecords/Microsoft.Azure.Commands.ScenarioTest.DmsTest.ServiceTests/TestValidateMigrationInputSqlSqlDbMiSync.json
@@ -0,0 +1,2721 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourcegroups/DmResource-PsTestRun681?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlZ3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNjgxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f46816c9-81ab-4d85-9959-7131e9ba60a2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "38"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "007ab066-43c1-4ed0-8847-475fd1fc3849"
+ ],
+ "x-ms-correlation-request-id": [
+ "007ab066-43c1-4ed0-8847-475fd1fc3849"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201830Z:007ab066-43c1-4ed0-8847-475fd1fc3849"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:18:29 GMT"
+ ],
+ "Content-Length": [
+ "207"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681\",\r\n \"name\": \"DmResource-PsTestRun681\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNjgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9zZXJ2aWNlcy9EbVNlcnZpY2UtUHNUZXN0UnVuNjIyNz9hcGktdmVyc2lvbj0yMDE4LTA3LTE1LXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"virtualSubnetId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/ERNetwork/providers/Microsoft.Network/virtualNetworks/ERDMSINTDemo-CORP-SCUS-VNET-5080/subnets/Subnet-1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium_4vCores\"\r\n },\r\n \"location\": \"South Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d055471f-30bb-4af4-8757-c942031e0c50"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "309"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"P6pV7x00uDYoc2Al5kuHr+G2BvGorGhCNlZ3vzyFlac=\""
+ ],
+ "Retry-After": [
+ "30"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview"
+ ],
+ "x-ms-request-id": [
+ "d7b60269-3a22-440c-ad22-21901ff2ddec"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "13135c26-5e00-492d-a18b-088bbc2435e2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201832Z:13135c26-5e00-492d-a18b-088bbc2435e2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:18:31 GMT"
+ ],
+ "Content-Length": [
+ "630"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"virtualSubnetId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/ERNetwork/providers/Microsoft.Network/virtualNetworks/ERDMSINTDemo-CORP-SCUS-VNET-5080/subnets/Subnet-1\"\r\n },\r\n \"etag\": \"P6pV7x00uDYoc2Al5kuHr+G2BvGorGhCNlZ3vzyFlac=\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"DmService-PsTestRun6227\",\r\n \"sku\": {\r\n \"name\": \"Premium_4vCores\",\r\n \"size\": \"4 vCores\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"type\": \"Microsoft.DataMigration/services\"\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "c95883b0-2949-4bd2-93c8-69d780423dc2"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "69b62296-8857-4df1-96e9-9fcbfce8110d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201902Z:69b62296-8857-4df1-96e9-9fcbfce8110d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:19:01 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "1a9c7dc5-25c9-4572-a0a2-e9e23d6af043"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "898e21d0-0b53-4f5c-a477-c1332682702e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T201932Z:898e21d0-0b53-4f5c-a477-c1332682702e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:19:31 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "4c393870-6fe9-479f-951d-c66baae0db83"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a10326f-a340-4691-b5bb-54288e3ae813"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202002Z:4a10326f-a340-4691-b5bb-54288e3ae813"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:20:02 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "1acd6de2-a618-4a00-805a-2e5d7085a2db"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5bd60b3-4212-4700-90d7-1512a5003095"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202032Z:e5bd60b3-4212-4700-90d7-1512a5003095"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:20:31 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6e495dcd-d27c-4a48-b35d-255244062e4a"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "df1e3115-e235-4a53-98f1-bdbc956d2a5e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202102Z:df1e3115-e235-4a53-98f1-bdbc956d2a5e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:21:02 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "182e0d25-3cb5-4d19-a6f1-247c0f822217"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "27c441f4-033a-4863-b925-928a1a3de206"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202133Z:27c441f4-033a-4863-b925-928a1a3de206"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:21:32 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "5175d289-84e7-4e2d-b6fd-c1612bc8ea64"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2dd6a18-cc9d-4901-8c67-c95a8fff4b04"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202203Z:b2dd6a18-cc9d-4901-8c67-c95a8fff4b04"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:22:02 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3f15e2c8-670b-4234-b0b3-b234581435b7"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4e57aa2-478c-4a84-ab59-c134946442fe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202233Z:f4e57aa2-478c-4a84-ab59-c134946442fe"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:22:32 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d8377ccc-2a9d-4dc9-a40c-898096deba16"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "29c32f49-eeb3-4bb9-b350-0d360392de60"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202303Z:29c32f49-eeb3-4bb9-b350-0d360392de60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:23:03 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6354cc2e-0edd-46a7-a92e-a457d0997874"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "5cd2a7a5-a5f5-4e03-a50e-6a3384a90f98"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202333Z:5cd2a7a5-a5f5-4e03-a50e-6a3384a90f98"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:23:32 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "2b9827ff-de8f-41d0-a00e-4899c4811ceb"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3a3ccc5-db64-4c78-aaee-130c96e9a350"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202403Z:e3a3ccc5-db64-4c78-aaee-130c96e9a350"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:24:03 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "2fcb3f4c-075d-4bc9-b9db-c37b5a93f563"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "f890a298-8e68-4346-95dd-a4bce92b36ee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202434Z:f890a298-8e68-4346-95dd-a4bce92b36ee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:24:33 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "27e617da-39c0-40eb-a0d6-05f38be02dab"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "f22c5759-e6f8-4915-9232-68f3e043918d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202504Z:f22c5759-e6f8-4915-9232-68f3e043918d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:25:04 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8a6a2c40-3f23-4d42-b61e-05cb5a780715"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "a924b0a6-4134-4dac-9f6f-e0626e70cb28"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202534Z:a924b0a6-4134-4dac-9f6f-e0626e70cb28"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:25:33 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ae58fec2-1a36-44ef-a67c-bee7853bb47b"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-correlation-request-id": [
+ "2ca5afa6-ec13-4d66-ad21-5e5782aad747"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202604Z:2ca5afa6-ec13-4d66-ad21-5e5782aad747"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:26:04 GMT"
+ ],
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Running\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvb3BlcmF0aW9uU3RhdHVzZXMvNTU1ZTdlMWYtZDZmOC00MTIwLTk0ZTktMmJiN2U1Mzc4N2ViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTUtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "665df96f-3ecb-4af0-b76e-a467e9508d6e"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a3ad33a-7433-4b05-a56a-4aaa7afd64d6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202634Z:4a3ad33a-7433-4b05-a56a-4aaa7afd64d6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:26:34 GMT"
+ ],
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/providers/Microsoft.DataMigration/locations/southcentralus/operationStatuses/555e7e1f-d6f8-4120-94e9-2bb7e53787eb\",\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNjgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9zZXJ2aWNlcy9EbVNlcnZpY2UtUHNUZXN0UnVuNjIyNz9hcGktdmVyc2lvbj0yMDE4LTA3LTE1LXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"zvUAoPERaK0BmpmwIbBzA9l2srA6Di6bEKQJWQk7Yo4=\""
+ ],
+ "x-ms-request-id": [
+ "cc10e10e-457b-41d1-8df6-a2adf1178734"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-correlation-request-id": [
+ "f58ec63d-32bd-4bc0-97a3-82083ebbf26b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202634Z:f58ec63d-32bd-4bc0-97a3-82083ebbf26b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:26:34 GMT"
+ ],
+ "Content-Length": [
+ "814"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualNicId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.Network/networkInterfaces/NIC-ucfe7qzet3ag36jg53frj8iu\",\r\n \"virtualSubnetId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/ERNetwork/providers/Microsoft.Network/virtualNetworks/ERDMSINTDemo-CORP-SCUS-VNET-5080/subnets/Subnet-1\"\r\n },\r\n \"etag\": \"zvUAoPERaK0BmpmwIbBzA9l2srA6Di6bEKQJWQk7Yo4=\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"DmService-PsTestRun6227\",\r\n \"sku\": {\r\n \"name\": \"Premium_4vCores\",\r\n \"size\": \"4 vCores\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"type\": \"Microsoft.DataMigration/services\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227/projects/DmProject-PsTestRun2667?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNjgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9zZXJ2aWNlcy9EbVNlcnZpY2UtUHNUZXN0UnVuNjIyNy9wcm9qZWN0cy9EbVByb2plY3QtUHNUZXN0UnVuMjY2Nz9hcGktdmVyc2lvbj0yMDE4LTA3LTE1LXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"sourcePlatform\": \"SQL\",\r\n \"targetPlatform\": \"SQLMI\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"Add-target-Here\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true\r\n },\r\n \"databasesInfo\": [\r\n {\r\n \"sourceDatabaseName\": \"DmDbName-PsTestRun3998\"\r\n },\r\n {\r\n \"sourceDatabaseName\": \"DmDbName-PsTestRun3255\"\r\n }\r\n ]\r\n },\r\n \"location\": \"South Central US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3613679e-913c-4ce5-b104-b68464890532"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "794"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"5U+kuJ/UHQ9hM+sB4oVKz41INSLKJbxrKmjXx9T6NzA=\""
+ ],
+ "x-ms-request-id": [
+ "63060e7b-3fbf-4cbd-9b0b-cb5477bff36d"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2128b8c-7660-4220-b93c-b70ca221e9d1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202636Z:c2128b8c-7660-4220-b93c-b70ca221e9d1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:26:35 GMT"
+ ],
+ "Content-Length": [
+ "1000"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"sourcePlatform\": \"SQL\",\r\n \"targetPlatform\": \"SQLMI\",\r\n \"creationTime\": \"2019-02-11T12:26:35.7518293-08:00\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"Add-target-Here\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true\r\n },\r\n \"databasesInfo\": [\r\n {\r\n \"sourceDatabaseName\": \"DmDbName-PsTestRun3998\"\r\n },\r\n {\r\n \"sourceDatabaseName\": \"DmDbName-PsTestRun3255\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"etag\": \"5U+kuJ/UHQ9hM+sB4oVKz41INSLKJbxrKmjXx9T6NzA=\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227/projects/DmProject-PsTestRun2667\",\r\n \"location\": \"South Central US\",\r\n \"name\": \"DmProject-PsTestRun2667\",\r\n \"type\": \"Microsoft.DataMigration/services/projects\"\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227/projects/DmProject-PsTestRun2667/tasks/DmTask-PsTestRun8354?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNjgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9zZXJ2aWNlcy9EbVNlcnZpY2UtUHNUZXN0UnVuNjIyNy9wcm9qZWN0cy9EbVByb2plY3QtUHNUZXN0UnVuMjY2Ny90YXNrcy9EbVRhc2stUHNUZXN0UnVuODM1ND9hcGktdmVyc2lvbj0yMDE4LTA3LTE1LXByZXZpZXc=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"taskType\": \"ValidateMigrationInput.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun9585\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"password\": \"Jan@2019\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"password\": \"Jan@2019\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\",\r\n \"password\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\",\r\n \"password\": \"Test123Test123Test123\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"appKey\": \"kv8fDwICsnTJcvsTM8fp2WMSDh6yeSaDalHfbiffBP4=\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4abfb0f9-982f-44f7-97f1-73b906f196ef"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "1727"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"2+TV29nWSuvF+fOjXNN0pxKEsujnr9KHQim5alvA+U0=\""
+ ],
+ "x-ms-request-id": [
+ "10ec6619-5da1-4ce6-a184-58dd4e8abeb8"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "003aa17c-d8e6-4a2d-a2cf-54d047a2e4aa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202637Z:003aa17c-d8e6-4a2d-a2cf-54d047a2e4aa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:26:36 GMT"
+ ],
+ "Content-Length": [
+ "1572"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun9585\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"taskId\": \"f0d4c237-23dd-4dde-af0d-3d5ba28da952\",\r\n \"taskType\": \"ValidateMigrationInput.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Queued\"\r\n },\r\n \"etag\": \"2+TV29nWSuvF+fOjXNN0pxKEsujnr9KHQim5alvA+U0=\",\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227/projects/DmProject-PsTestRun2667/tasks/DmTask-PsTestRun8354\",\r\n \"name\": \"DmTask-PsTestRun8354\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227/projects/DmProject-PsTestRun2667/tasks/DmTask-PsTestRun8354?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNjgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9zZXJ2aWNlcy9EbVNlcnZpY2UtUHNUZXN0UnVuNjIyNy9wcm9qZWN0cy9EbVByb2plY3QtUHNUZXN0UnVuMjY2Ny90YXNrcy9EbVRhc2stUHNUZXN0UnVuODM1ND8kZXhwYW5kPW91dHB1dCZhcGktdmVyc2lvbj0yMDE4LTA3LTE1LXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "12f9693b-4d96-4655-a71b-95ed9fd2d2e2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "22dbfb2b-39ca-4433-b132-fb001c8d924c"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba3a36d2-66ee-40ad-9422-07aa4f4d2da6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202637Z:ba3a36d2-66ee-40ad-9422-07aa4f4d2da6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:26:36 GMT"
+ ],
+ "Content-Length": [
+ "1530"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun9585\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [],\r\n \"taskId\": \"f0d4c237-23dd-4dde-af0d-3d5ba28da952\",\r\n \"taskType\": \"ValidateMigrationInput.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Queued\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227/projects/DmProject-PsTestRun2667/tasks/DmTask-PsTestRun8354\",\r\n \"name\": \"DmTask-PsTestRun8354\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227/projects/DmProject-PsTestRun2667/tasks/DmTask-PsTestRun8354?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNjgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9zZXJ2aWNlcy9EbVNlcnZpY2UtUHNUZXN0UnVuNjIyNy9wcm9qZWN0cy9EbVByb2plY3QtUHNUZXN0UnVuMjY2Ny90YXNrcy9EbVRhc2stUHNUZXN0UnVuODM1ND8kZXhwYW5kPW91dHB1dCZhcGktdmVyc2lvbj0yMDE4LTA3LTE1LXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2bf231f5-4d77-48c0-87b0-dbed1d33fae3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "dffb959b-ed7d-49b7-9c80-0f2a431099b6"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-correlation-request-id": [
+ "1dd46966-6f78-4c70-a21f-0a7963507349"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202652Z:1dd46966-6f78-4c70-a21f-0a7963507349"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:26:51 GMT"
+ ],
+ "Content-Length": [
+ "1531"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun9585\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [],\r\n \"taskId\": \"f0d4c237-23dd-4dde-af0d-3d5ba28da952\",\r\n \"taskType\": \"ValidateMigrationInput.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Running\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227/projects/DmProject-PsTestRun2667/tasks/DmTask-PsTestRun8354\",\r\n \"name\": \"DmTask-PsTestRun8354\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227/projects/DmProject-PsTestRun2667/tasks/DmTask-PsTestRun8354?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNjgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9zZXJ2aWNlcy9EbVNlcnZpY2UtUHNUZXN0UnVuNjIyNy9wcm9qZWN0cy9EbVByb2plY3QtUHNUZXN0UnVuMjY2Ny90YXNrcy9EbVRhc2stUHNUZXN0UnVuODM1ND8kZXhwYW5kPW91dHB1dCZhcGktdmVyc2lvbj0yMDE4LTA3LTE1LXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f629cc1e-b010-41c0-b104-4f00ebd0fe12"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "7616c788-1843-4c2b-8684-ad8374eedb2d"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-correlation-request-id": [
+ "12d5a739-fa40-432f-81ee-9359731abbd4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202707Z:12d5a739-fa40-432f-81ee-9359731abbd4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:27:07 GMT"
+ ],
+ "Content-Length": [
+ "1533"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"input\": {\r\n \"selectedDatabases\": [\r\n {\r\n \"name\": \"AdventureWorks\",\r\n \"restoreDatabaseName\": \"AdventureWorks-PsTestRun9585\",\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n }\r\n }\r\n ],\r\n \"backupFileShare\": {\r\n \"userName\": \".\\\\TestUser1\",\r\n \"path\": \"\\\\\\\\aalab03-2k8.redmond.corp.microsoft.com\\\\SharedBackup1\"\r\n },\r\n \"storageResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/MIPSTEST/providers/Microsoft.Storage/storageAccounts/mipstest\",\r\n \"sourceConnectionInfo\": {\r\n \"type\": \"SqlConnectionInfo\",\r\n \"dataSource\": \"aalab03-2k8.redmond.corp.microsoft.com\",\r\n \"authentication\": \"SqlAuthentication\",\r\n \"encryptConnection\": true,\r\n \"trustServerCertificate\": true,\r\n \"userName\": \"TestUser1\"\r\n },\r\n \"targetConnectionInfo\": {\r\n \"type\": \"MiSqlConnectionInfo\",\r\n \"managedInstanceResourceId\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/demomiRG/providers/Microsoft.Sql/managedInstances/demomi\",\r\n \"userName\": \"demouser\"\r\n },\r\n \"azureApp\": {\r\n \"applicationId\": \"3d0ecd52-ca9a-4fbe-b0ed-68f1594b3dfe\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n },\r\n \"output\": [],\r\n \"taskId\": \"f0d4c237-23dd-4dde-af0d-3d5ba28da952\",\r\n \"taskType\": \"ValidateMigrationInput.SqlServer.AzureSqlDbMI.Sync.LRS\",\r\n \"state\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227/projects/DmProject-PsTestRun2667/tasks/DmTask-PsTestRun8354\",\r\n \"name\": \"DmTask-PsTestRun8354\",\r\n \"type\": \"Microsoft.DataMigration/services/projects/tasks\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227/projects/DmProject-PsTestRun2667/tasks/DmTask-PsTestRun8354?$expand=output&api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNjgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9zZXJ2aWNlcy9EbVNlcnZpY2UtUHNUZXN0UnVuNjIyNy9wcm9qZWN0cy9EbVByb2plY3QtUHNUZXN0UnVuMjY2Ny90YXNrcy9EbVRhc2stUHNUZXN0UnVuODM1ND8kZXhwYW5kPW91dHB1dCZhcGktdmVyc2lvbj0yMDE4LTA3LTE1LXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5575f3cb-19a0-49a6-8c70-378003168482"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "359da0f3-b361-480a-886f-dfda240f85a0"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-correlation-request-id": [
+ "a40ae51a-accb-4436-89b3-57729d20d14f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202708Z:a40ae51a-accb-4436-89b3-57729d20d14f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:27:07 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourceGroups/DmResource-PsTestRun681/providers/Microsoft.DataMigration/services/DmService-PsTestRun6227/projects/DmProject-PsTestRun2667/tasks/DmTask-PsTestRun8354?api-version=2018-07-15-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlR3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNjgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YU1pZ3JhdGlvbi9zZXJ2aWNlcy9EbVNlcnZpY2UtUHNUZXN0UnVuNjIyNy9wcm9qZWN0cy9EbVByb2plY3QtUHNUZXN0UnVuMjY2Ny90YXNrcy9EbVRhc2stUHNUZXN0UnVuODM1ND9hcGktdmVyc2lvbj0yMDE4LTA3LTE1LXByZXZpZXc=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8aeb3362-dc02-44cd-a15f-6aff4d079e24"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.DataMigration.DataMigrationServiceClient/0.7.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d30eab0e-2f1d-474f-b4d8-40ce13910d2f"
+ ],
+ "Server": [
+ "Microsoft-IIS/8.5"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-correlation-request-id": [
+ "d68cf0a4-f691-467d-bee4-8b3734441142"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202708Z:d68cf0a4-f691-467d-bee4-8b3734441142"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:27:07 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/resourcegroups/DmResource-PsTestRun681?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL3Jlc291cmNlZ3JvdXBzL0RtUmVzb3VyY2UtUHNUZXN0UnVuNjgxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "426abb65-a98d-45a9-b5a5-741a004ca55a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "ec701e3d-66b3-4881-a65a-98c33bc7777d"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec701e3d-66b3-4881-a65a-98c33bc7777d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202708Z:ec701e3d-66b3-4881-a65a-98c33bc7777d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:27:08 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "84a5958b-0152-4cca-a215-85556dc56607"
+ ],
+ "x-ms-correlation-request-id": [
+ "84a5958b-0152-4cca-a215-85556dc56607"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202724Z:84a5958b-0152-4cca-a215-85556dc56607"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:27:24 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "0acd3954-c17e-45aa-9d7e-1b6b9efbe79b"
+ ],
+ "x-ms-correlation-request-id": [
+ "0acd3954-c17e-45aa-9d7e-1b6b9efbe79b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202739Z:0acd3954-c17e-45aa-9d7e-1b6b9efbe79b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:27:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "20355bb0-97b4-40c8-a365-cbc372df8099"
+ ],
+ "x-ms-correlation-request-id": [
+ "20355bb0-97b4-40c8-a365-cbc372df8099"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202754Z:20355bb0-97b4-40c8-a365-cbc372df8099"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:27:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "0f8b281e-4f2a-4333-aa12-2c205c6d865c"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f8b281e-4f2a-4333-aa12-2c205c6d865c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202809Z:0f8b281e-4f2a-4333-aa12-2c205c6d865c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:28:09 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-request-id": [
+ "4508d207-2e97-4e94-9de9-3e1ef5e2db32"
+ ],
+ "x-ms-correlation-request-id": [
+ "4508d207-2e97-4e94-9de9-3e1ef5e2db32"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202824Z:4508d207-2e97-4e94-9de9-3e1ef5e2db32"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:28:24 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-request-id": [
+ "4daeda40-4bac-4735-810e-ea1e072227c8"
+ ],
+ "x-ms-correlation-request-id": [
+ "4daeda40-4bac-4735-810e-ea1e072227c8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202840Z:4daeda40-4bac-4735-810e-ea1e072227c8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:28:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-request-id": [
+ "a9ed4fe2-f9fe-4ef4-aec6-1d08f2082bf0"
+ ],
+ "x-ms-correlation-request-id": [
+ "a9ed4fe2-f9fe-4ef4-aec6-1d08f2082bf0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202855Z:a9ed4fe2-f9fe-4ef4-aec6-1d08f2082bf0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:28:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "bfa58e23-f420-4035-89de-277c56208e78"
+ ],
+ "x-ms-correlation-request-id": [
+ "bfa58e23-f420-4035-89de-277c56208e78"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202910Z:bfa58e23-f420-4035-89de-277c56208e78"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:29:09 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-request-id": [
+ "02eb02cc-4c02-43c2-9aa4-be836edfd4cf"
+ ],
+ "x-ms-correlation-request-id": [
+ "02eb02cc-4c02-43c2-9aa4-be836edfd4cf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202925Z:02eb02cc-4c02-43c2-9aa4-be836edfd4cf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:29:25 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-request-id": [
+ "8218b33e-9540-412e-93f7-338bf11e8d46"
+ ],
+ "x-ms-correlation-request-id": [
+ "8218b33e-9540-412e-93f7-338bf11e8d46"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202940Z:8218b33e-9540-412e-93f7-338bf11e8d46"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:29:40 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-request-id": [
+ "c0402758-af12-4150-8e1e-a1c372ec8ec0"
+ ],
+ "x-ms-correlation-request-id": [
+ "c0402758-af12-4150-8e1e-a1c372ec8ec0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T202956Z:c0402758-af12-4150-8e1e-a1c372ec8ec0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:29:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-request-id": [
+ "b3eae8b0-f839-4b60-b8bf-085939f9c64f"
+ ],
+ "x-ms-correlation-request-id": [
+ "b3eae8b0-f839-4b60-b8bf-085939f9c64f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203011Z:b3eae8b0-f839-4b60-b8bf-085939f9c64f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:30:10 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-request-id": [
+ "5fb80f1f-6e85-41b8-bbe6-d3ccd4c87cef"
+ ],
+ "x-ms-correlation-request-id": [
+ "5fb80f1f-6e85-41b8-bbe6-d3ccd4c87cef"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203026Z:5fb80f1f-6e85-41b8-bbe6-d3ccd4c87cef"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:30:26 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-request-id": [
+ "989366ce-e6b2-4774-bd02-b57ac988cbbd"
+ ],
+ "x-ms-correlation-request-id": [
+ "989366ce-e6b2-4774-bd02-b57ac988cbbd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203041Z:989366ce-e6b2-4774-bd02-b57ac988cbbd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:30:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-request-id": [
+ "1ee7fe47-0ddd-4d1b-a9d3-3438668ae8b1"
+ ],
+ "x-ms-correlation-request-id": [
+ "1ee7fe47-0ddd-4d1b-a9d3-3438668ae8b1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203056Z:1ee7fe47-0ddd-4d1b-a9d3-3438668ae8b1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:30:56 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-request-id": [
+ "0fae717b-28a3-438a-8b63-e23743389714"
+ ],
+ "x-ms-correlation-request-id": [
+ "0fae717b-28a3-438a-8b63-e23743389714"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203111Z:0fae717b-28a3-438a-8b63-e23743389714"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:31:11 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-request-id": [
+ "f019bbfb-2547-4d4e-9373-1ebd361de825"
+ ],
+ "x-ms-correlation-request-id": [
+ "f019bbfb-2547-4d4e-9373-1ebd361de825"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203127Z:f019bbfb-2547-4d4e-9373-1ebd361de825"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:31:26 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-request-id": [
+ "809fe722-387c-4ad0-bef2-af29fe29330b"
+ ],
+ "x-ms-correlation-request-id": [
+ "809fe722-387c-4ad0-bef2-af29fe29330b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203142Z:809fe722-387c-4ad0-bef2-af29fe29330b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:31:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/9d32140c-78d4-49a9-a95f-65c77c16be83/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ETVJFU09VUkNFOjJEUFNURVNUUlVONjgxLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWQzMjE0MGMtNzhkNC00OWE5LWE5NWYtNjVjNzdjMTZiZTgzL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFFVFZKRlUwOVZVa05GT2pKRVVGTlVSVk5VVWxWT05qZ3hMVk5QVlZSSVEwVk9WRkpCVEZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKemIzVjBhR05sYm5SeVlXeDFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.27207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.17763.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-request-id": [
+ "321ed362-6463-46ca-8093-cd7f2a471daf"
+ ],
+ "x-ms-correlation-request-id": [
+ "321ed362-6463-46ca-8093-cd7f2a471daf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20190211T203142Z:321ed362-6463-46ca-8093-cd7f2a471daf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Mon, 11 Feb 2019 20:31:41 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "testName": [
+ "DmResource-PsTestRun681",
+ "DmService-PsTestRun6227",
+ "DmProject-PsTestRun2667",
+ "DmDbName-PsTestRun3998",
+ "DmDbName-PsTestRun3255",
+ "DmTask-PsTestRun8354",
+ "AdventureWorks-PsTestRun9585"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "9d32140c-78d4-49a9-a95f-65c77c16be83"
+ }
+}
\ No newline at end of file
diff --git a/src/DataMigration/DataMigration.Test/appsettings.json b/src/DataMigration/DataMigration.Test/appsettings.json
index 3c49c633170a..26d75d0d3f33 100644
--- a/src/DataMigration/DataMigration.Test/appsettings.json
+++ b/src/DataMigration/DataMigration.Test/appsettings.json
@@ -21,5 +21,9 @@
"MI_LOGINS": "user1,user2,user3",
"MI_AGENTJOBS": "testAgentJob1,testAgentJob2",
"MONGODB_SOURCE_CONNECTIONSTRING": "Add-MongoDb-Connection-Here",
- "COSMOSDB_TARGET_CONNECTIONSTRING": "Add-CosmosDb-Connection-Here"
+ "COSMOSDB_TARGET_CONNECTIONSTRING": "Add-CosmosDb-Connection-Here",
+ "MI_RESOURCE_ID": "Mi Resource Id here",
+ "STORAGE_RESOURCE_ID": "Storage Resource Id here",
+ "AZURE_AAD_APP_ID": "App Id Here",
+ "AZURE_AAD_APP_KEY": "APP KEY Here"
}
\ No newline at end of file
diff --git a/src/DataMigration/DataMigration.sln b/src/DataMigration/DataMigration.sln
index fbdb32810cf1..453ce1e71e39 100644
--- a/src/DataMigration/DataMigration.sln
+++ b/src/DataMigration/DataMigration.sln
@@ -45,18 +45,26 @@ Global
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Powershell|Any CPU.ActiveCfg = Release|Any CPU
+ {FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Powershell|Any CPU.Build.0 = Release|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FF81DC73-B8EC-4082-8841-4FBF2B16E7CE}.Release|Any CPU.Build.0 = Release|Any CPU
{3E016018-D65D-4336-9F64-17DA97783AD0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3E016018-D65D-4336-9F64-17DA97783AD0}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {3E016018-D65D-4336-9F64-17DA97783AD0}.Powershell|Any CPU.ActiveCfg = Release|Any CPU
+ {3E016018-D65D-4336-9F64-17DA97783AD0}.Powershell|Any CPU.Build.0 = Release|Any CPU
{3E016018-D65D-4336-9F64-17DA97783AD0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3E016018-D65D-4336-9F64-17DA97783AD0}.Release|Any CPU.Build.0 = Release|Any CPU
{F83FBA8D-732D-437C-A0E2-02E45B01E123}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F83FBA8D-732D-437C-A0E2-02E45B01E123}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {F83FBA8D-732D-437C-A0E2-02E45B01E123}.Powershell|Any CPU.ActiveCfg = Release|Any CPU
+ {F83FBA8D-732D-437C-A0E2-02E45B01E123}.Powershell|Any CPU.Build.0 = Release|Any CPU
{F83FBA8D-732D-437C-A0E2-02E45B01E123}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F83FBA8D-732D-437C-A0E2-02E45B01E123}.Release|Any CPU.Build.0 = Release|Any CPU
{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Powershell|Any CPU.ActiveCfg = Release|Any CPU
+ {BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Powershell|Any CPU.Build.0 = Release|Any CPU
{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
diff --git a/src/DataMigration/DataMigration/Az.DataMigration.psd1 b/src/DataMigration/DataMigration/Az.DataMigration.psd1
index 6bc5c21e5d38..40bfa04f0f88 100644
--- a/src/DataMigration/DataMigration/Az.DataMigration.psd1
+++ b/src/DataMigration/DataMigration/Az.DataMigration.psd1
@@ -93,7 +93,8 @@ CmdletsToExport = 'New-AzDataMigrationDatabaseInfo',
'New-AzDataMigrationSyncSelectedDBObject',
'New-AzDataMigrationMongoDbDatabaseSetting',
'New-AzDataMigrationMongoDbCollectionSetting',
- 'Invoke-AzDataMigrationCommand'
+ 'Invoke-AzDataMigrationCommand',
+ 'New-AzDataMigrationAzureActiveDirectoryApp'
# Variables to export from this module
# VariablesToExport = @()
@@ -123,7 +124,8 @@ AliasesToExport = 'Get-AzDms',
'New-AzDmsSelectedDBObject',
'New-AzDmsSyncSelectedDBObject',
'New-AzDmsMongoDbDatabaseSetting',
- 'New-AzDmsMongoDbCollectionSetting'
+ 'New-AzDmsMongoDbCollectionSetting',
+ 'New-AzDmsAadApp'
# DSC resources to export from this module
# DscResourcesToExport = @()
diff --git a/src/DataMigration/DataMigration/Cmdlets/CompleteMiSyncCommandCmdlet.cs b/src/DataMigration/DataMigration/Cmdlets/CompleteMiSyncCommandCmdlet.cs
new file mode 100644
index 000000000000..1118342eac76
--- /dev/null
+++ b/src/DataMigration/DataMigration/Cmdlets/CompleteMiSyncCommandCmdlet.cs
@@ -0,0 +1,46 @@
+// ----------------------------------------------------------------------------------
+//
+// 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 Microsoft.Azure.Management.DataMigration.Models;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.DataMigration.Cmdlets
+{
+ public class CompleteMiSyncCommandCmdlet : CommandCmdlet
+ {
+ private readonly string DatabaseName = "DatabaseName";
+
+ public CompleteMiSyncCommandCmdlet(InvocationInfo myInvocation) : base(myInvocation)
+ {
+ }
+
+ public override void CustomInit()
+ {
+ this.SimpleParam(DatabaseName, typeof(string), "Gets or sets name of database", true);
+ }
+
+ public override CommandProperties ProcessCommandCmdlet()
+ {
+ MigrateMISyncCompleteCommandProperties properties = new MigrateMISyncCompleteCommandProperties();
+
+ if (MyInvocation.BoundParameters.ContainsKey(DatabaseName))
+ {
+ properties.Input = new MigrateMISyncCompleteCommandInput();
+ properties.Input.SourceDatabaseName = MyInvocation.BoundParameters[DatabaseName] as string;
+ }
+
+ return properties;
+ }
+ }
+}
diff --git a/src/DataMigration/DataMigration/Cmdlets/ConnectToTargetSqlDbMiSyncTaskCmdlet.cs b/src/DataMigration/DataMigration/Cmdlets/ConnectToTargetSqlDbMiSyncTaskCmdlet.cs
new file mode 100644
index 000000000000..4fd244258461
--- /dev/null
+++ b/src/DataMigration/DataMigration/Cmdlets/ConnectToTargetSqlDbMiSyncTaskCmdlet.cs
@@ -0,0 +1,69 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Management.Automation;
+using Microsoft.Azure.Commands.DataMigration.Models;
+using Microsoft.Azure.Management.DataMigration.Models;
+
+namespace Microsoft.Azure.Commands.DataMigration.Cmdlets
+{
+ public class ConnectToTargetSqlDbMiSyncTaskCmdlet : TaskCmdlet
+ {
+ private readonly string AadApp = "AzureActiveDirectoryApp";
+
+ public ConnectToTargetSqlDbMiSyncTaskCmdlet(InvocationInfo myInvocation) : base(myInvocation)
+ {
+ }
+
+ public override void CustomInit()
+ {
+ this.TargetConnectionInfoParam(true);
+ this.SimpleParam(AadApp, typeof(PSAzureActiveDirectoryApp), "Azure Active Directory App", true, false);
+ }
+
+ public override ProjectTaskProperties ProcessTaskCmdlet()
+ {
+ ConnectToTargetSqlMISyncTaskProperties properties = new ConnectToTargetSqlMISyncTaskProperties();
+
+ if (MyInvocation.BoundParameters.ContainsKey(TargetConnection))
+ {
+ var targetConnectionInfo = (MiSqlConnectionInfo)MyInvocation.BoundParameters[TargetConnection];
+ PSCredential cred = (PSCredential)MyInvocation.BoundParameters[TargetCred];
+ targetConnectionInfo.UserName = cred.UserName;
+ targetConnectionInfo.Password = Decrypt(cred.Password);
+
+ PSAzureActiveDirectoryApp aadAp = (PSAzureActiveDirectoryApp)MyInvocation.BoundParameters[AadApp];
+
+ AzureActiveDirectoryApp app = new AzureActiveDirectoryApp
+ {
+ ApplicationId = aadAp.ApplicationId,
+ AppKey = Decrypt(aadAp.AppKey),
+ TenantId = aadAp.TenantId
+ };
+
+ properties.Input = new ConnectToTargetSqlMISyncTaskInput
+ {
+ TargetConnectionInfo = targetConnectionInfo,
+ AzureApp = app
+ };
+ }
+ else
+ {
+ throw new PSArgumentException("Invalid Argument List");
+ }
+
+ return properties;
+ }
+ }
+}
diff --git a/src/DataMigration/DataMigration/Cmdlets/DataMigrationCmdlet.cs b/src/DataMigration/DataMigration/Cmdlets/DataMigrationCmdlet.cs
index 2747b74168aa..cf922bbeeb4f 100644
--- a/src/DataMigration/DataMigration/Cmdlets/DataMigrationCmdlet.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/DataMigrationCmdlet.cs
@@ -29,7 +29,6 @@ namespace Microsoft.Azure.Commands.DataMigration.Cmdlets
///
public abstract class DataMigrationCmdlet : AzureRMCmdlet
{
- protected const string ServiceSkuName = "PP1"; // Hardcoded SKU name. This has to be changed later.
protected DmsClient _dmsClient;
protected const string ResourceGroupParameterSet = "ResourceGroupParameterSet";
diff --git a/src/DataMigration/DataMigration/Cmdlets/InvokeDataMigrationCommand.cs b/src/DataMigration/DataMigration/Cmdlets/InvokeDataMigrationCommand.cs
index 0e43d9b18681..7356c2342058 100644
--- a/src/DataMigration/DataMigration/Cmdlets/InvokeDataMigrationCommand.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/InvokeDataMigrationCommand.cs
@@ -30,9 +30,23 @@ public class InvokeDataMigrationCommand : DataMigrationCmdlet, IDynamicParameter
[Parameter(
Mandatory = true,
HelpMessage = "Command Type.")]
- [PSArgumentCompleter("Complete")]
[ValidateNotNullOrEmpty]
- public string CommandType { get; set; }
+ public CommandTypeEnum CommandType
+ {
+ get
+ {
+ return commandType;
+ }
+ set
+ {
+ commandType = value;
+ commandTypeSet = true;
+ }
+ }
+
+ private CommandTypeEnum commandType;
+
+ private bool commandTypeSet;
[Parameter(
Mandatory = true,
@@ -68,20 +82,35 @@ public class InvokeDataMigrationCommand : DataMigrationCmdlet, IDynamicParameter
public object GetDynamicParameters()
{
- // make sure the commands are relate to the project type, so read project to ensure right method to invoke.
- Project resp = this.DataMigrationClient.Projects.Get(ResourceGroupName, ServiceName, ProjectName);
RuntimeDefinedParameterDictionary dynamicParams = null;
- string cmd = string.IsNullOrWhiteSpace(CommandType) ? " " : CommandType.ToLowerInvariant();
- if (resp.SourcePlatform.ToLowerInvariant() == "mongodb")
- {
- commandCmdlet = new MongoDbObjectCommandCmdlet(this.MyInvocation, cmd);
- }
- else
+
+ if (commandTypeSet)
{
- commandCmdlet = new CompleteCommandCmdlet(this.MyInvocation);
+ CommandTypeEnum type = CommandType;
+ switch (type)
+ {
+ case CommandTypeEnum.CompleteSqlDBSync:
+ commandCmdlet = new CompleteCommandCmdlet(this.MyInvocation);
+ break;
+ case CommandTypeEnum.CancelMongoDB:
+ commandCmdlet = new MongoDbObjectCommandCmdlet(this.MyInvocation, CommandTypeEnum.CancelMongoDB);
+ break;
+ case CommandTypeEnum.RestartMongoDB:
+ commandCmdlet = new MongoDbObjectCommandCmdlet(this.MyInvocation, CommandTypeEnum.RestartMongoDB);
+ break;
+ case CommandTypeEnum.FinishMongoDB:
+ commandCmdlet = new MongoDbObjectCommandCmdlet(this.MyInvocation, CommandTypeEnum.FinishMongoDB);
+ break;
+ case CommandTypeEnum.CompleteSqlMiSync:
+ commandCmdlet = new CompleteMiSyncCommandCmdlet(this.MyInvocation);
+ break;
+ default:
+ throw new PSArgumentException();
+ }
+
+ dynamicParams = commandCmdlet.RuntimeDefinedParams;
}
- dynamicParams = commandCmdlet.RuntimeDefinedParams;
return dynamicParams;
}
diff --git a/src/DataMigration/DataMigration/Cmdlets/MiSqlConnectionInfoCmdlet.cs b/src/DataMigration/DataMigration/Cmdlets/MiSqlConnectionInfoCmdlet.cs
new file mode 100644
index 000000000000..41d117ca6bcc
--- /dev/null
+++ b/src/DataMigration/DataMigration/Cmdlets/MiSqlConnectionInfoCmdlet.cs
@@ -0,0 +1,43 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Management.Automation;
+using Microsoft.Azure.Management.DataMigration.Models;
+
+namespace Microsoft.Azure.Commands.DataMigration.Cmdlets
+{
+ public class MiSqlConnectionInfoCmdlet : ConnectionInfoCmdlet
+ {
+ private readonly string resourceId = "MiResourceId";
+
+ public MiSqlConnectionInfoCmdlet(InvocationInfo myInvocation) : base(myInvocation)
+ {
+ }
+
+ public override void CustomInit()
+ {
+ this.SimpleParam(resourceId, typeof(string), "Azure SQL Managed Instance Resource Id.", true);
+ }
+
+ public override object ProcessConnectionInfoCmdlet()
+ {
+ MiSqlConnectionInfo connectionInfo = new MiSqlConnectionInfo
+ {
+ ManagedInstanceResourceId = MyInvocation.BoundParameters[resourceId] as string,
+ };
+
+ return connectionInfo;
+ }
+ }
+}
diff --git a/src/DataMigration/DataMigration/Cmdlets/MigrateSqlServerSqlDbMiSyncTaskCmdlet.cs b/src/DataMigration/DataMigration/Cmdlets/MigrateSqlServerSqlDbMiSyncTaskCmdlet.cs
new file mode 100644
index 000000000000..da452436055b
--- /dev/null
+++ b/src/DataMigration/DataMigration/Cmdlets/MigrateSqlServerSqlDbMiSyncTaskCmdlet.cs
@@ -0,0 +1,109 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.DataMigration.Models;
+using Microsoft.Azure.Management.DataMigration.Models;
+
+namespace Microsoft.Azure.Commands.DataMigration.Cmdlets
+{
+ public class MigrateSqlServerSqlDbMiSyncTaskCmdlet : TaskCmdlet
+ {
+ private readonly string SelectedDatabase = "SelectedDatabase";
+ private readonly string BackupFileShare = "BackupFileShare";
+ private readonly string AadApp = "AzureActiveDirectoryApp";
+ private readonly string StorageResourceId = "StorageResourceId";
+
+ public MigrateSqlServerSqlDbMiSyncTaskCmdlet(InvocationInfo myInvocation) : base(myInvocation)
+ {
+ }
+
+ public override void CustomInit()
+ {
+ this.TargetConnectionInfoParam(true);
+ this.SourceConnectionInfoParam(true);
+ this.SimpleParam(SelectedDatabase, typeof(MigrateSqlServerSqlMIDatabaseInput[]), "Selected database to migrate", true);
+ this.SimpleParam(AadApp, typeof(PSAzureActiveDirectoryApp), "Azure Active Directory App", true);
+ this.SimpleParam(BackupFileShare, typeof(FileShare), "File Share where the backup and transaction logs files are stored", true);
+ this.SimpleParam(StorageResourceId, typeof(string), "Azure Storage Resource Id", true);
+ }
+
+ public override ProjectTaskProperties ProcessTaskCmdlet()
+ {
+ MiSqlConnectionInfo targetConnectionInfo = null;
+ SqlConnectionInfo sourceConnectionInfo = null;
+ List selectedDatabases = null;
+ FileShare backupFileShare = null;
+ string storageId = null;
+
+ if (MyInvocation.BoundParameters.ContainsKey(TargetConnection))
+ {
+ targetConnectionInfo = (MiSqlConnectionInfo)MyInvocation.BoundParameters[TargetConnection];
+ PSCredential cred = (PSCredential)MyInvocation.BoundParameters[TargetCred];
+ targetConnectionInfo.UserName = cred.UserName;
+ targetConnectionInfo.Password = Decrypt(cred.Password);
+ }
+
+ if (MyInvocation.BoundParameters.ContainsKey(SourceConnection))
+ {
+ sourceConnectionInfo = (SqlConnectionInfo)MyInvocation.BoundParameters[SourceConnection];
+ PSCredential cred = (PSCredential)MyInvocation.BoundParameters[SourceCred];
+ sourceConnectionInfo.UserName = cred.UserName;
+ sourceConnectionInfo.Password = Decrypt(cred.Password);
+ }
+
+ if (MyInvocation.BoundParameters.ContainsKey(SelectedDatabase))
+ {
+ selectedDatabases
+ = ((MigrateSqlServerSqlMIDatabaseInput[])MyInvocation.BoundParameters[SelectedDatabase]).ToList();
+ }
+
+ if (MyInvocation.BoundParameters.ContainsKey(BackupFileShare))
+ {
+ backupFileShare = (FileShare)MyInvocation.BoundParameters[BackupFileShare];
+ }
+
+ if (MyInvocation.BoundParameters.ContainsKey(StorageResourceId))
+ {
+ storageId = MyInvocation.BoundParameters[StorageResourceId] as string;
+ }
+
+ PSAzureActiveDirectoryApp aadAp = (PSAzureActiveDirectoryApp)MyInvocation.BoundParameters[AadApp];
+
+ AzureActiveDirectoryApp app = new AzureActiveDirectoryApp
+ {
+ ApplicationId = aadAp.ApplicationId,
+ AppKey = Decrypt(aadAp.AppKey),
+ TenantId = aadAp.TenantId
+ };
+
+ var properties = new MigrateSqlServerSqlMISyncTaskProperties
+ {
+ Input = new MigrateSqlServerSqlMISyncTaskInput
+ {
+ TargetConnectionInfo = targetConnectionInfo,
+ SourceConnectionInfo = sourceConnectionInfo,
+ SelectedDatabases = selectedDatabases,
+ BackupFileShare = backupFileShare,
+ StorageResourceId = storageId,
+ AzureApp = app
+ }
+ };
+
+ return properties;
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/DataMigration/DataMigration/Cmdlets/MongoDbObjectCommandCmdlet.cs b/src/DataMigration/DataMigration/Cmdlets/MongoDbObjectCommandCmdlet.cs
index c07b58ec63d9..53aea2784cf4 100644
--- a/src/DataMigration/DataMigration/Cmdlets/MongoDbObjectCommandCmdlet.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/MongoDbObjectCommandCmdlet.cs
@@ -12,6 +12,7 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
+using Microsoft.Azure.Commands.DataMigration.Models;
using Microsoft.Azure.Management.DataMigration.Models;
using System.Management.Automation;
@@ -25,13 +26,13 @@ public class MongoDbObjectCommandCmdlet : CommandCmdlet
private readonly string ObjectName = "ObjectName";
private readonly string Immediate = "Immediate";
- private readonly string commandName;
+ private readonly CommandTypeEnum commandType;
private string objectNameParameterValue;
private bool immediateParameterValue;
- public MongoDbObjectCommandCmdlet(InvocationInfo myInvocation, string commandName) : base(myInvocation)
+ public MongoDbObjectCommandCmdlet(InvocationInfo myInvocation, CommandTypeEnum commandType) : base(myInvocation)
{
- this.commandName = commandName;
+ this.commandType = commandType;
}
public override void CustomInit()
@@ -42,17 +43,17 @@ public override void CustomInit()
private CommandProperties _constructInputCommandObject(string objectName, bool immediate)
{
- switch(commandName)
+ switch(commandType)
{
- case "restart":
+ case CommandTypeEnum.RestartMongoDB:
return new MongoDbRestartCommand() { Input = new MongoDbCommandInput() { ObjectName = objectName } };
- case "finish":
+ case CommandTypeEnum.FinishMongoDB:
return new MongoDbFinishCommand() { Input = new MongoDbFinishCommandInput() { Immediate = immediate, ObjectName = objectName } };
- case "cancel":
+ case CommandTypeEnum.CancelMongoDB:
return new MongoDbCancelCommand() { Input = new MongoDbCommandInput() { ObjectName = objectName } };
}
- throw new PSInvalidOperationException($"{commandName} is not a valid operation on the task");
+ throw new PSInvalidOperationException($"{commandType} is not a valid operation on the task");
}
public override CommandProperties ProcessCommandCmdlet()
diff --git a/src/DataMigration/DataMigration/Cmdlets/NewAzureActiveDirectoryAppCmdlet.cs b/src/DataMigration/DataMigration/Cmdlets/NewAzureActiveDirectoryAppCmdlet.cs
new file mode 100644
index 000000000000..267f047ea794
--- /dev/null
+++ b/src/DataMigration/DataMigration/Cmdlets/NewAzureActiveDirectoryAppCmdlet.cs
@@ -0,0 +1,58 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Management.Automation;
+using System.Security;
+using Microsoft.Azure.Commands.DataMigration.Models;
+
+namespace Microsoft.Azure.Commands.DataMigration.Cmdlets
+{
+ ///
+ /// Class that creates a new instance of AzureActiveDirectoryApp.
+ ///
+ [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataMigrationAzureActiveDirectoryApp", SupportsShouldProcess = true), OutputType(typeof(PSAzureActiveDirectoryApp))]
+ [Alias("New-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DmsAadApp")]
+ public class NewAzureActiveDirectoryAppCmdlet : DataMigrationCmdlet
+ {
+ [Parameter(
+ Mandatory = true,
+ HelpMessage = "Azure Active Directory Application Id")]
+ [ValidateNotNullOrEmpty]
+ [Alias("AppId")]
+ public string ApplicationId { get; set; }
+
+ [Parameter(
+ Mandatory = true,
+ HelpMessage = "Azure Active Directory Key")]
+ [ValidateNotNullOrEmpty]
+ [Alias("Key")]
+ public SecureString AppKey { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ if (ShouldProcess(this.ApplicationId, Resources.createAadApp))
+ {
+ base.ExecuteCmdlet();
+
+ PSAzureActiveDirectoryApp aadApp = new PSAzureActiveDirectoryApp(this.DefaultContext.Tenant.Id)
+ {
+ ApplicationId = ApplicationId,
+ AppKey = AppKey,
+ };
+
+ WriteObject(aadApp);
+ }
+ }
+ }
+}
diff --git a/src/DataMigration/DataMigration/Cmdlets/NewConnectionInfoCmdlet.cs b/src/DataMigration/DataMigration/Cmdlets/NewConnectionInfoCmdlet.cs
index 4d7e43a311de..550a73be675b 100644
--- a/src/DataMigration/DataMigration/Cmdlets/NewConnectionInfoCmdlet.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/NewConnectionInfoCmdlet.cs
@@ -77,6 +77,9 @@ public object GetDynamicParameters()
case ServerTypeEnum.MongoDb:
this.connCmdlet = new MongoDbConnectionInfoCmdlet(this.MyInvocation);
break;
+ case ServerTypeEnum.SQLMI:
+ this.connCmdlet = new MiSqlConnectionInfoCmdlet(this.MyInvocation);
+ break;
default:
throw new PSArgumentException();
}
diff --git a/src/DataMigration/DataMigration/Cmdlets/NewDataMigrationTask.cs b/src/DataMigration/DataMigration/Cmdlets/NewDataMigrationTask.cs
index 719fbbf56e21..b0a36bb8e411 100644
--- a/src/DataMigration/DataMigration/Cmdlets/NewDataMigrationTask.cs
+++ b/src/DataMigration/DataMigration/Cmdlets/NewDataMigrationTask.cs
@@ -186,6 +186,18 @@ public object GetDynamicParameters()
taskCmdlet = new ValidateMongoDbMigrationTaskCmdlet(this.MyInvocation);
expandParameterOfTask = "output($filter=ResultType eq 'Migration' or ResultType eq 'Database')";
break;
+ case TaskTypeEnum.ConnectToTargetSqlDbMiSync:
+ taskCmdlet = new ConnectToTargetSqlDbMiSyncTaskCmdlet(this.MyInvocation);
+ expandParameterOfTask = "output";
+ break;
+ case TaskTypeEnum.ValidateSqlServerSqlDbMiSync:
+ taskCmdlet = new ValidateSqlServerSqlDbMiSyncTaskCmdlet(this.MyInvocation);
+ expandParameterOfTask = "output";
+ break;
+ case TaskTypeEnum.MigrateSqlServerSqlDbMiSync:
+ taskCmdlet = new MigrateSqlServerSqlDbMiSyncTaskCmdlet(this.MyInvocation);
+ expandParameterOfTask = "";
+ break;
default:
throw new PSArgumentException();
}
@@ -240,7 +252,7 @@ public override void ExecuteCmdlet()
( response.Properties.State == "Queued" || response.Properties.State == "Running" ) )
{
System.Threading.Thread.Sleep(System.TimeSpan.FromSeconds(TaskWaitSleepIntervalInSeconds));
- WriteVerbose($"{taskInput.Id} {taskInput.Name} {taskInput.Properties.State} Elapsed: {System.DateTime.UtcNow - utcStartedOn}");
+ WriteVerbose($"{response.Id} {response.Name} {response.Properties.State} Elapsed: {System.DateTime.UtcNow - utcStartedOn}");
response = DataMigrationClient.Tasks.Get(ResourceGroupName, ServiceName, ProjectName, Name, this.expandParameterOfTask);
}
}
diff --git a/src/DataMigration/DataMigration/Cmdlets/ValidateSqlServerSqlDbMiSyncTaskCmdlet.cs b/src/DataMigration/DataMigration/Cmdlets/ValidateSqlServerSqlDbMiSyncTaskCmdlet.cs
new file mode 100644
index 000000000000..e114ffb4561e
--- /dev/null
+++ b/src/DataMigration/DataMigration/Cmdlets/ValidateSqlServerSqlDbMiSyncTaskCmdlet.cs
@@ -0,0 +1,109 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Collections.Generic;
+using System.Linq;
+using System.Management.Automation;
+using Microsoft.Azure.Commands.DataMigration.Models;
+using Microsoft.Azure.Management.DataMigration.Models;
+
+namespace Microsoft.Azure.Commands.DataMigration.Cmdlets
+{
+ public class ValidateSqlServerSqlDbMiSyncTaskCmdlet : TaskCmdlet
+ {
+ private readonly string SelectedDatabase = "SelectedDatabase";
+ private readonly string BackupFileShare = "BackupFileShare";
+ private readonly string AadApp = "AzureActiveDirectoryApp";
+ private readonly string StorageResourceId = "StorageResourceId";
+
+ public ValidateSqlServerSqlDbMiSyncTaskCmdlet(InvocationInfo myInvocation) : base(myInvocation)
+ {
+ }
+
+ public override void CustomInit()
+ {
+ this.TargetConnectionInfoParam(true);
+ this.SourceConnectionInfoParam(true);
+ this.SimpleParam(SelectedDatabase, typeof(MigrateSqlServerSqlMIDatabaseInput[]), "Selected database to migrate", true);
+ this.SimpleParam(AadApp, typeof(PSAzureActiveDirectoryApp), "Azure Active Directory App", true);
+ this.SimpleParam(BackupFileShare, typeof(FileShare), "File Share where the backup and transaction logs files are stored", true);
+ this.SimpleParam(StorageResourceId, typeof(string), "Azure Storage Resource Id", true);
+ }
+
+ public override ProjectTaskProperties ProcessTaskCmdlet()
+ {
+ MiSqlConnectionInfo targetConnectionInfo = null;
+ SqlConnectionInfo sourceConnectionInfo = null;
+ List selectedDatabases = null;
+ FileShare backupFileShare = null;
+ string storageId = null;
+
+ if (MyInvocation.BoundParameters.ContainsKey(TargetConnection))
+ {
+ targetConnectionInfo = (MiSqlConnectionInfo)MyInvocation.BoundParameters[TargetConnection];
+ PSCredential cred = (PSCredential)MyInvocation.BoundParameters[TargetCred];
+ targetConnectionInfo.UserName = cred.UserName;
+ targetConnectionInfo.Password = Decrypt(cred.Password);
+ }
+
+ if (MyInvocation.BoundParameters.ContainsKey(SourceConnection))
+ {
+ sourceConnectionInfo = (SqlConnectionInfo)MyInvocation.BoundParameters[SourceConnection];
+ PSCredential cred = (PSCredential)MyInvocation.BoundParameters[SourceCred];
+ sourceConnectionInfo.UserName = cred.UserName;
+ sourceConnectionInfo.Password = Decrypt(cred.Password);
+ }
+
+ if (MyInvocation.BoundParameters.ContainsKey(SelectedDatabase))
+ {
+ selectedDatabases
+ = ((MigrateSqlServerSqlMIDatabaseInput[])MyInvocation.BoundParameters[SelectedDatabase]).ToList();
+ }
+
+ if (MyInvocation.BoundParameters.ContainsKey(BackupFileShare))
+ {
+ backupFileShare = (FileShare)MyInvocation.BoundParameters[BackupFileShare];
+ }
+
+ if (MyInvocation.BoundParameters.ContainsKey(StorageResourceId))
+ {
+ storageId = MyInvocation.BoundParameters[StorageResourceId] as string;
+ }
+
+ PSAzureActiveDirectoryApp aadAp = (PSAzureActiveDirectoryApp)MyInvocation.BoundParameters[AadApp];
+
+ AzureActiveDirectoryApp app = new AzureActiveDirectoryApp
+ {
+ ApplicationId = aadAp.ApplicationId,
+ AppKey = Decrypt(aadAp.AppKey),
+ TenantId = aadAp.TenantId
+ };
+
+ var properties = new ValidateMigrationInputSqlServerSqlMISyncTaskProperties
+ {
+ Input = new ValidateMigrationInputSqlServerSqlMISyncTaskInput
+ {
+ TargetConnectionInfo = targetConnectionInfo,
+ SourceConnectionInfo = sourceConnectionInfo,
+ SelectedDatabases = selectedDatabases,
+ BackupFileShare = backupFileShare,
+ StorageResourceId = storageId,
+ AzureApp = app
+ }
+ };
+
+ return properties;
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/DataMigration/DataMigration/DataMigration.csproj b/src/DataMigration/DataMigration/DataMigration.csproj
index 370c684b0e70..94abd9302b05 100644
--- a/src/DataMigration/DataMigration/DataMigration.csproj
+++ b/src/DataMigration/DataMigration/DataMigration.csproj
@@ -1,18 +1,27 @@
-
-
+
DataMigration
-
-
$(LegacyAssemblyPrefix)$(PsModuleName)
-
-
+
-
+
+
+ True
+ True
+ Resources.resx
+
+
+
+
+ Designer
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
\ No newline at end of file
diff --git a/src/DataMigration/DataMigration/Models/CommandTypeEnum.cs b/src/DataMigration/DataMigration/Models/CommandTypeEnum.cs
index 8baccf82b5a3..a236a3750960 100644
--- a/src/DataMigration/DataMigration/Models/CommandTypeEnum.cs
+++ b/src/DataMigration/DataMigration/Models/CommandTypeEnum.cs
@@ -16,9 +16,10 @@ namespace Microsoft.Azure.Commands.DataMigration.Models
{
public enum CommandTypeEnum
{
- Complete,
- Cancel,
- Restart,
- Finish
+ CompleteSqlDBSync,
+ CancelMongoDB,
+ RestartMongoDB,
+ FinishMongoDB,
+ CompleteSqlMiSync
}
}
diff --git a/src/DataMigration/DataMigration/Models/PSAzureActiveDirectoryApp.cs b/src/DataMigration/DataMigration/Models/PSAzureActiveDirectoryApp.cs
new file mode 100644
index 000000000000..dcbd5b757603
--- /dev/null
+++ b/src/DataMigration/DataMigration/Models/PSAzureActiveDirectoryApp.cs
@@ -0,0 +1,39 @@
+// ----------------------------------------------------------------------------------
+//
+// 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.Security;
+
+namespace Microsoft.Azure.Commands.DataMigration.Models
+{
+ public class PSAzureActiveDirectoryApp
+ {
+ public PSAzureActiveDirectoryApp(string tenantId)
+ {
+ if (string.IsNullOrEmpty(tenantId))
+ {
+ throw new ArgumentNullException("TenantId");
+ }
+
+ this.TenantId = tenantId;
+ }
+
+ public string ApplicationId { get; set; }
+
+ public SecureString AppKey { get; set; }
+
+ public string TenantId { get; private set; }
+
+ }
+}
\ No newline at end of file
diff --git a/src/DataMigration/DataMigration/Models/ServerTypeEnum.cs b/src/DataMigration/DataMigration/Models/ServerTypeEnum.cs
index ff78c4e6c7ae..1fc5436676bb 100644
--- a/src/DataMigration/DataMigration/Models/ServerTypeEnum.cs
+++ b/src/DataMigration/DataMigration/Models/ServerTypeEnum.cs
@@ -17,7 +17,8 @@ namespace Microsoft.Azure.Commands.DataMigration.Models
public enum ServerTypeEnum
{
SQL,
- MongoDb
+ MongoDb,
+ SQLMI
}
}
diff --git a/src/DataMigration/DataMigration/Models/TaskTypeEnum.cs b/src/DataMigration/DataMigration/Models/TaskTypeEnum.cs
index 1c1f35bb11c3..295938426d19 100644
--- a/src/DataMigration/DataMigration/Models/TaskTypeEnum.cs
+++ b/src/DataMigration/DataMigration/Models/TaskTypeEnum.cs
@@ -31,6 +31,9 @@ public enum TaskTypeEnum
ConnectToSourceMongoDb,
ConnectToTargetMongoDb,
MigrateMongoDb,
- ValidateMongoDbMigration
+ ValidateMongoDbMigration,
+ ConnectToTargetSqlDbMiSync,
+ ValidateSqlServerSqlDbMiSync,
+ MigrateSqlServerSqlDbMiSync
}
}
diff --git a/src/DataMigration/DataMigration/Resources.Designer.cs b/src/DataMigration/DataMigration/Resources.Designer.cs
index c82d7dff8f7a..c5ac80d3aec6 100644
--- a/src/DataMigration/DataMigration/Resources.Designer.cs
+++ b/src/DataMigration/DataMigration/Resources.Designer.cs
@@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.DataMigration {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- public class Resources {
+ internal class Resources {
private static global::System.Resources.ResourceManager resourceMan;
@@ -36,7 +36,7 @@ internal Resources() {
/// Returns the cached ResourceManager instance used by this class.
///
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- public static global::System.Resources.ResourceManager ResourceManager {
+ internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.Azure.Commands.DataMigration.Resources", typeof(Resources).Assembly);
@@ -51,7 +51,7 @@ internal Resources() {
/// resource lookups using this strongly typed resource class.
///
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- public static global::System.Globalization.CultureInfo Culture {
+ internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
@@ -63,7 +63,7 @@ internal Resources() {
///
/// Looks up a localized string similar to '{0}' already exists..
///
- public static string AlreadyExists {
+ internal static string AlreadyExists {
get {
return ResourceManager.GetString("AlreadyExists", resourceCulture);
}
@@ -72,7 +72,7 @@ public static string AlreadyExists {
///
/// Looks up a localized string similar to Results at the '{0}' level are not available for migrations from source data platform '{1}' to target data platform '{2}'..
///
- public static string CannotQueryMigrationResult {
+ internal static string CannotQueryMigrationResult {
get {
return ResourceManager.GetString("CannotQueryMigrationResult", resourceCulture);
}
@@ -81,7 +81,7 @@ public static string CannotQueryMigrationResult {
///
/// Looks up a localized string similar to Cannot select tables for migration for the target server type '{0}'..
///
- public static string CannotSelectTablesForMigration {
+ internal static string CannotSelectTablesForMigration {
get {
return ResourceManager.GetString("CannotSelectTablesForMigration", resourceCulture);
}
@@ -90,7 +90,7 @@ public static string CannotSelectTablesForMigration {
///
/// Looks up a localized string similar to The selected '{0}' data platform type '{1}' does not match the '{2}' platform type '{3}' of the connection info object..
///
- public static string ConnectionTypeMigrationTaskMismatch {
+ internal static string ConnectionTypeMigrationTaskMismatch {
get {
return ResourceManager.GetString("ConnectionTypeMigrationTaskMismatch", resourceCulture);
}
@@ -99,16 +99,25 @@ public static string ConnectionTypeMigrationTaskMismatch {
///
/// Looks up a localized string similar to Parameter set '{0}' cannot be used with the connection type '{1}' .
///
- public static string ConnectionTypeParameterSetMismatch {
+ internal static string ConnectionTypeParameterSetMismatch {
get {
return ResourceManager.GetString("ConnectionTypeParameterSetMismatch", resourceCulture);
}
}
+ ///
+ /// Looks up a localized string similar to Create Azure Active Directory App.
+ ///
+ internal static string createAadApp {
+ get {
+ return ResourceManager.GetString("createAadApp", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Create CosmosDb collection setting.
///
- public static string createCollectionSetting {
+ internal static string createCollectionSetting {
get {
return ResourceManager.GetString("createCollectionSetting", resourceCulture);
}
@@ -117,7 +126,7 @@ public static string createCollectionSetting {
///
/// Looks up a localized string similar to Creating Command.
///
- public static string createCommand {
+ internal static string createCommand {
get {
return ResourceManager.GetString("createCommand", resourceCulture);
}
@@ -126,7 +135,7 @@ public static string createCommand {
///
/// Looks up a localized string similar to Create Connection Info.
///
- public static string createConnectionInfo {
+ internal static string createConnectionInfo {
get {
return ResourceManager.GetString("createConnectionInfo", resourceCulture);
}
@@ -135,7 +144,7 @@ public static string createConnectionInfo {
///
/// Looks up a localized string similar to Create Database Info.
///
- public static string createDbInfo {
+ internal static string createDbInfo {
get {
return ResourceManager.GetString("createDbInfo", resourceCulture);
}
@@ -144,7 +153,7 @@ public static string createDbInfo {
///
/// Looks up a localized string similar to Creating Project.
///
- public static string createProject {
+ internal static string createProject {
get {
return ResourceManager.GetString("createProject", resourceCulture);
}
@@ -153,7 +162,7 @@ public static string createProject {
///
/// Looks up a localized string similar to Create Databases Info for Migration.
///
- public static string createSelectedDB {
+ internal static string createSelectedDB {
get {
return ResourceManager.GetString("createSelectedDB", resourceCulture);
}
@@ -162,7 +171,7 @@ public static string createSelectedDB {
///
/// Looks up a localized string similar to Creating Service.
///
- public static string createService {
+ internal static string createService {
get {
return ResourceManager.GetString("createService", resourceCulture);
}
@@ -171,7 +180,7 @@ public static string createService {
///
/// Looks up a localized string similar to Creating Task.
///
- public static string createTask {
+ internal static string createTask {
get {
return ResourceManager.GetString("createTask", resourceCulture);
}
@@ -180,7 +189,7 @@ public static string createTask {
///
/// Looks up a localized string similar to The database '{0}' is not available on the source server..
///
- public static string DatabaseNameNotAvailableOnSource {
+ internal static string DatabaseNameNotAvailableOnSource {
get {
return ResourceManager.GetString("DatabaseNameNotAvailableOnSource", resourceCulture);
}
@@ -189,7 +198,7 @@ public static string DatabaseNameNotAvailableOnSource {
///
/// Looks up a localized string similar to The database '{0}' is not available on the target server..
///
- public static string DatabaseNameNotAvailableOnTarget {
+ internal static string DatabaseNameNotAvailableOnTarget {
get {
return ResourceManager.GetString("DatabaseNameNotAvailableOnTarget", resourceCulture);
}
@@ -198,7 +207,7 @@ public static string DatabaseNameNotAvailableOnTarget {
///
/// Looks up a localized string similar to The database '{0}' has not been selected for migration. Please first run Add-AzDmsDatabase to add the database to the migration task..
///
- public static string DatabaseNotSelectedForMigration {
+ internal static string DatabaseNotSelectedForMigration {
get {
return ResourceManager.GetString("DatabaseNotSelectedForMigration", resourceCulture);
}
@@ -207,7 +216,7 @@ public static string DatabaseNotSelectedForMigration {
///
/// Looks up a localized string similar to This command is not available for migration tasks from '{0}' to '{1}'.
///
- public static string InvalidCommandOperation {
+ internal static string InvalidCommandOperation {
get {
return ResourceManager.GetString("InvalidCommandOperation", resourceCulture);
}
@@ -216,7 +225,7 @@ public static string InvalidCommandOperation {
///
/// Looks up a localized string similar to '{0}' not found..
///
- public static string NotFound {
+ internal static string NotFound {
get {
return ResourceManager.GetString("NotFound", resourceCulture);
}
@@ -225,7 +234,7 @@ public static string NotFound {
///
/// Looks up a localized string similar to Removing project ....
///
- public static string removeProject {
+ internal static string removeProject {
get {
return ResourceManager.GetString("removeProject", resourceCulture);
}
@@ -234,7 +243,7 @@ public static string removeProject {
///
/// Looks up a localized string similar to Removing service ....
///
- public static string removeService {
+ internal static string removeService {
get {
return ResourceManager.GetString("removeService", resourceCulture);
}
@@ -243,7 +252,7 @@ public static string removeService {
///
/// Looks up a localized string similar to Removing task ....
///
- public static string removeTask {
+ internal static string removeTask {
get {
return ResourceManager.GetString("removeTask", resourceCulture);
}
@@ -252,7 +261,7 @@ public static string removeTask {
///
/// Looks up a localized string similar to Are you sure you want to remove project '{0}'.
///
- public static string removingProject {
+ internal static string removingProject {
get {
return ResourceManager.GetString("removingProject", resourceCulture);
}
@@ -261,7 +270,7 @@ public static string removingProject {
///
/// Looks up a localized string similar to Are you sure you want to remove service '{0}'.
///
- public static string removingService {
+ internal static string removingService {
get {
return ResourceManager.GetString("removingService", resourceCulture);
}
@@ -270,7 +279,7 @@ public static string removingService {
///
/// Looks up a localized string similar to Are you sure you want to remove task '{0}'.
///
- public static string removingTask {
+ internal static string removingTask {
get {
return ResourceManager.GetString("removingTask", resourceCulture);
}
@@ -279,7 +288,7 @@ public static string removingTask {
///
/// Looks up a localized string similar to The {0} SKU in service {1} is marked for deprecation and will be discontinued from 08/31/2018..
///
- public static string SKUDeprecationWarningMessage {
+ internal static string SKUDeprecationWarningMessage {
get {
return ResourceManager.GetString("SKUDeprecationWarningMessage", resourceCulture);
}
@@ -288,7 +297,7 @@ public static string SKUDeprecationWarningMessage {
///
/// Looks up a localized string similar to Start Project.
///
- public static string startProject {
+ internal static string startProject {
get {
return ResourceManager.GetString("startProject", resourceCulture);
}
@@ -297,7 +306,7 @@ public static string startProject {
///
/// Looks up a localized string similar to Start Service.
///
- public static string startService {
+ internal static string startService {
get {
return ResourceManager.GetString("startService", resourceCulture);
}
@@ -306,7 +315,7 @@ public static string startService {
///
/// Looks up a localized string similar to Start Task.
///
- public static string startTask {
+ internal static string startTask {
get {
return ResourceManager.GetString("startTask", resourceCulture);
}
@@ -315,7 +324,7 @@ public static string startTask {
///
/// Looks up a localized string similar to Stop Service.
///
- public static string stopService {
+ internal static string stopService {
get {
return ResourceManager.GetString("stopService", resourceCulture);
}
@@ -324,7 +333,7 @@ public static string stopService {
///
/// Looks up a localized string similar to Stop Task.
///
- public static string stopTask {
+ internal static string stopTask {
get {
return ResourceManager.GetString("stopTask", resourceCulture);
}
diff --git a/src/DataMigration/DataMigration/Resources.resx b/src/DataMigration/DataMigration/Resources.resx
index 8831375b45eb..efa233e01e0c 100644
--- a/src/DataMigration/DataMigration/Resources.resx
+++ b/src/DataMigration/DataMigration/Resources.resx
@@ -207,4 +207,7 @@
The {0} SKU in service {1} is marked for deprecation and will be discontinued from 08/31/2018.
+
+ Create Azure Active Directory App
+
\ No newline at end of file
diff --git a/src/DataMigration/DataMigration/help/Invoke-AzDataMigrationCommand.md b/src/DataMigration/DataMigration/help/Invoke-AzDataMigrationCommand.md
index 733f9b81ca2e..4e923efd2e78 100644
--- a/src/DataMigration/DataMigration/help/Invoke-AzDataMigrationCommand.md
+++ b/src/DataMigration/DataMigration/help/Invoke-AzDataMigrationCommand.md
@@ -25,7 +25,7 @@ The Invoke-AzDataMigrationCommand cmdlet creates a new command task to be run on
### Example 1
```
-PS C:\> $command = Invoke-AzDataMigrationCommand -CommandType Complete -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName -TaskName $taskName -DatabaseName $output.DatabaseName
+PS C:\> $command = Invoke-AzDataMigrationCommand -CommandType CompleteSqlDBSync -ResourceGroupName $rg.ResourceGroupName -ServiceName $service.Name -ProjectName -TaskName $taskName -DatabaseName $output.DatabaseName
```
The above examples uses the Invoke-AzDataMigrationCommand cmdlet to create a command for an existing service, project, and task
@@ -33,12 +33,13 @@ The above examples uses the Invoke-AzDataMigrationCommand cmdlet to create a com
## PARAMETERS
### -CommandType
-Command Type, possible values: Complete, Cancel, Restart, Finish
+Command Type.
```yaml
-Type: System.String
+Type: Microsoft.Azure.Commands.DataMigration.Models.CommandTypeEnum
Parameter Sets: (All)
Aliases:
+Accepted values: CompleteSqlDBSync, CancelMongoDB, RestartMongoDB, FinishMongoDB, CompleteSqlMiSync
Required: True
Position: Named
diff --git a/src/DataMigration/DataMigration/help/New-AzDataMigrationAzureActiveDirectoryApp.md b/src/DataMigration/DataMigration/help/New-AzDataMigrationAzureActiveDirectoryApp.md
new file mode 100644
index 000000000000..6760e5230de1
--- /dev/null
+++ b/src/DataMigration/DataMigration/help/New-AzDataMigrationAzureActiveDirectoryApp.md
@@ -0,0 +1,95 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.DataMigration.dll-Help.xml
+Module Name: Az.DataMigration
+online version: https://docs.microsoft.com/en-us/powershell/module/az.datamigration/New-AzDataMigrationAzureActiveDirectoryApp
+schema: 2.0.0
+---
+
+# New-AzDataMigrationAzureActiveDirectoryApp
+
+## SYNOPSIS
+Create a new instance DataMigration Azure ActiveDirectory Application details.
+
+## SYNTAX
+
+```
+New-AzDataMigrationAzureActiveDirectoryApp -ApplicationId -AppKey
+ [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+Create a new instance DataMigration Azure ActiveDirectory Application details.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> $secpasswd = ConvertTo-SecureString "Your Secret Key Here" -AsPlainText -Force
+C:\> New-AzDmsAadApp -ApplicationId "Your AppId/Service Principal ID here" -AppKey $secpasswd
+```
+ApplicationId : "Your AppId/Service Principal Id here"
+AppKey : System.Security.SecureString
+TenantId : "Tenant Id"
+
+## PARAMETERS
+
+### -AppKey
+Azure Active Directory Key
+
+```yaml
+Type: System.Security.SecureString
+Parameter Sets: (All)
+Aliases: Key
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ApplicationId
+Azure Active Directory Application Id
+
+```yaml
+Type: System.String
+Parameter Sets: (All)
+Aliases: AppId
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
+For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### None
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.DataMigration.Models.PSAzureActiveDirectoryApp
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/DataMigration/DataMigration/help/New-AzDataMigrationConnectionInfo.md b/src/DataMigration/DataMigration/help/New-AzDataMigrationConnectionInfo.md
index 71aee5c12dce..4ddf8b963aa0 100644
--- a/src/DataMigration/DataMigration/help/New-AzDataMigrationConnectionInfo.md
+++ b/src/DataMigration/DataMigration/help/New-AzDataMigrationConnectionInfo.md
@@ -53,7 +53,7 @@ Enum that describes server type to connect to. Currently supported values are SQ
Type: Microsoft.Azure.Commands.DataMigration.Models.ServerTypeEnum
Parameter Sets: (All)
Aliases:
-Accepted values: SQL
+Accepted values: SQL, MongoDb, SQLMI
Required: True
Position: Named
diff --git a/src/DataMigration/DataMigration/help/New-AzDataMigrationTask.md b/src/DataMigration/DataMigration/help/New-AzDataMigrationTask.md
index 378ac7f3aef3..7d41468d68b4 100644
--- a/src/DataMigration/DataMigration/help/New-AzDataMigrationTask.md
+++ b/src/DataMigration/DataMigration/help/New-AzDataMigrationTask.md
@@ -157,7 +157,7 @@ Task Type.
Type: Microsoft.Azure.Commands.DataMigration.Models.TaskTypeEnum
Parameter Sets: (All)
Aliases:
-Accepted values: MigrateSqlServerSqlDb, ConnectToSourceSqlServer, ConnectToTargetSqlDb, GetUserTablesSql, ConnectToTargetSqlDbMi, MigrateSqlServerSqlDbMi, ValidateSqlServerSqlDbMi, MigrateSqlServerSqlDbSync, ConnectToSourceSqlServerSync, ConnectToTargetSqlSync, GetUserTablesSqlSync, ValidateSqlServerSqlDbSync, ConnectToTargetMongoDb, ConnectToSourceMongoDb, MigrateMongoDb, ValidateMongoDbMigration
+Accepted values: MigrateSqlServerSqlDb, ConnectToSourceSqlServer, ConnectToTargetSqlDb, GetUserTablesSql, ConnectToTargetSqlDbMi, MigrateSqlServerSqlDbMi, ValidateSqlServerSqlDbMi, MigrateSqlServerSqlDbSync, ConnectToSourceSqlServerSync, ConnectToTargetSqlSync, GetUserTablesSqlSync, ValidateSqlServerSqlDbSync, ConnectToSourceMongoDb, ConnectToTargetMongoDb, MigrateMongoDb, ValidateMongoDbMigration, ConnectToTargetSqlDbMiSync, ValidateSqlServerSqlDbMiSync, MigrateSqlServerSqlDbMiSync
Required: True
Position: Named
diff --git a/tools/CredScanSuppressions.json b/tools/CredScanSuppressions.json
index db1b6acff903..b4cf1c3c79f4 100644
--- a/tools/CredScanSuppressions.json
+++ b/tools/CredScanSuppressions.json
@@ -1113,6 +1113,22 @@
{
"file": "src\\Compute\\Compute.Test\\SessionRecords\\Microsoft.Azure.Commands.Compute.Test.ScenarioTests.AEMExtensionTests\\TestAEMExtensionAdvancedLinuxMD_ESeries.json",
"_justification": "Mocked test resource. The resources are being deleted after the test run in Record mode."
+ },
+ {
+ "file": "\\src\\DataMigration\\DataMigration.Test\\SessionRecords\\Microsoft.Azure.Commands.ScenarioTest.DmsTest.ServiceTests\\TestConnectToTargetSqlDbMiSync.json",
+ "_justification": "Legitimate session record, Key will be revoked after test"
+ },
+ {
+ "file": "\\src\\DataMigration\\DataMigration.Test\\SessionRecords\\Microsoft.Azure.Commands.ScenarioTest.DmsTest.ServiceTests\\TestMigrateSqlSqlDbMiSync.json",
+ "_justification": "Legitimate session record, Key will be revoked after test"
+ },
+ {
+ "file": "\\src\\DataMigration\\DataMigration.Test\\SessionRecords\\Microsoft.Azure.Commands.ScenarioTest.DmsTest.ServiceTests\\TestValidateMigrationInputSqlSqlDbMiSync.json",
+ "_justification": "Legitimate session record, Key will be revoked after test"
+ },
+ {
+ "file": "\\src\\DataMigration\\DataMigration.Test\\SessionRecords\\Microsoft.Azure.Commands.ScenarioTest.DmsTest.ServiceTests\\TestMigrateSqlSqlDbMiSync.json",
+ "_justification": "Legitimate session record, Key will be revoked after test"
}
]
-}
+}
\ No newline at end of file
diff --git a/tools/StaticAnalysis/Exceptions/Az.DataMigration/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.DataMigration/BreakingChangeIssues.csv
index e4d070d56bbd..c3248f5957cd 100644
--- a/tools/StaticAnalysis/Exceptions/Az.DataMigration/BreakingChangeIssues.csv
+++ b/tools/StaticAnalysis/Exceptions/Az.DataMigration/BreakingChangeIssues.csv
@@ -1 +1,2 @@
"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation"
+"Microsoft.Azure.PowerShell.Cmdlets.DataMigration.dll","Microsoft.Azure.Commands.DataMigration.Cmdlets.InvokeDataMigrationCommand","Invoke-AzDataMigrationCommand","0","2020","The cmdlet 'Invoke-AzDataMigrationCommand' no longer supports the type 'System.String' for parameter 'CommandType'.","Change the type for parameter 'CommandType' back to 'System.String'."